This question is locked. New answers and comments are not allowed.
Hi, I´m using a data grid inside an expander, but this grid does not get all the expander width. Whats is wrong?
Thanks.
Thanks.
<telerik:RadExpander Grid.Row="4" Expanded="radExpander2_Expanded" MaxHeight="200"
x:Name="radExpander2" ExpandDirection="Down" IsExpanded="False"
VerticalAlignment="Top" HorizontalAlignment="Stretch"
>
<telerik:RadExpander.Header>
<TextBlock Text="Cálculo da monodroga acumulada na prescrição" Visibility="Visible" />
</telerik:RadExpander.Header>
<telerik:RadExpander.Content>
<telerik:RadWrapPanel Orientation="Horizontal" VerticalAlignment="Bottom" HorizontalAlignment="Stretch"
>
<data:DataGrid x:Name="dgMonodroga" AutoGenerateColumns="False"/>
</telerik:RadWrapPanel>
</telerik:RadExpander.Content>
</telerik:RadExpander>