This is a migrated thread and some comments may be shown as answers.

RadExpander and Expression Blend

1 Answer 62 Views
Expander
This is a migrated thread and some comments may be shown as answers.
Henrique Duarte
Top achievements
Rank 1
Veteran
Henrique Duarte asked on 07 Jul 2011, 01:48 PM
I'm having problems to open a ChildWindow control with a RadExpander inside of it on  Expression Blend 4. The ChildControl opens correctly on Visual Studio 2010.

Here is the code and a I'm attaching the exception screen.

<controls:ChildWindow x:Class="Barramento.Admin.ErrorMessageV"
           xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
           xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
           xmlns:controls="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls"
           Title="Erro">
    <Grid x:Name="LayoutRoot"
          Width="540"
          MinHeight="150">
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto" />
            <RowDefinition Height="*" />
            <RowDefinition Height="Auto" />
        </Grid.RowDefinitions>
 
        <TextBlock x:Name="IntroductoryText"
                   Margin="0"
                   Text=""
                   Foreground="White"
                   TextWrapping="Wrap" />
 
        <telerik:RadExpander Header="Detalhe do erro"
                             Grid.Row="1"
                             Margin="0,6,0,0">
            <TextBox x:Name="ErrorTextBox"
                     Height="150"
                     TextWrapping="Wrap"
                     IsReadOnly="True"
                     VerticalScrollBarVisibility="Auto"
                     FontFamily="Lucida Sans Unicode"
                     FontSize="11" />
        </telerik:RadExpander>
 
        <Button x:Name="OKButton"
                Grid.Row="2"
                Click="OKButton_Click"
                Width="75"
                Height="23"
                HorizontalAlignment="Right"
                Margin="0,10,0,0"
                TabIndex="0"
                Content="OK" />
 
    </Grid>
</controls:ChildWindow>

Best regards,

Henrique

1 Answer, 1 is accepted

Sort by
0
Petar Mladenov
Telerik team
answered on 12 Jul 2011, 03:08 PM
Hi Henrique Duarte,

Unfortunately, I was unable to reproduce this exception at our side. You can examine my test project and the video I captured and let me know if I have missed something. Thank you for your cooperation.

Greetings,
Petar Mladenov
the Telerik team

Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!

Tags
Expander
Asked by
Henrique Duarte
Top achievements
Rank 1
Veteran
Answers by
Petar Mladenov
Telerik team
Share this question
or