This question is locked. New answers and comments are not allowed.
Hi!
I have an expander and I want to have the header like this:
The problem is that the combobox appears stucked to the textblock. I have defined three columns, and I would like combobox appears in the third column with a space.
I have an expander and I want to have the header like this:
| <telerik:RadExpander ExpandDirection="Down" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"> |
| <telerik:RadExpander.Header> |
| <Grid HorizontalAlignment="Stretch" VerticalAlignment="Stretch"> |
| <Grid.ColumnDefinitions> |
| <ColumnDefinition Width="*"/> |
| <ColumnDefinition Width="*"/> |
| <ColumnDefinition Width="*"/> |
| </Grid.ColumnDefinitions> |
| <TextBlock x:Name="Origenes_Txb" Text="OrĂgenes" FontWeight="Bold" Grid.Column="0" Grid.ColumnSpan="2"/> |
| <ComboBox Grid.Column="2" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/> |
| </Grid> |
| </telerik:RadExpander.Header> |
| </telerik:RadExpander> |