Hi
I am facing a problem. I want expander on top of every control means wants to set Z Index of expander to max value.
Also I am not able to set the width of expander, it is not showing all the controls. Please find the code and see the attached Image for more understanding.
I am using RadExpander inside RadWindow and not able to see entire content of RadExpander. (see in image)
Also I am attaching one more image with desired functionality. When I click on th Expander, It should open on the left side as in the image "desired layout.jpg".
Please have a look and provide me some solution with an example.
I am facing a problem. I want expander on top of every control means wants to set Z Index of expander to max value.
Also I am not able to set the width of expander, it is not showing all the controls. Please find the code and see the attached Image for more understanding.
I am using RadExpander inside RadWindow and not able to see entire content of RadExpander. (see in image)
Also I am attaching one more image with desired functionality. When I click on th Expander, It should open on the left side as in the image "desired layout.jpg".
Please have a look and provide me some solution with an example.
<Grid x:Name="LayoutRoot" Grid.Column="3" Grid.ColumnSpan="2" Grid.Row="0" Margin="5"> <Canvas Panel.ZIndex="99"> <telerik:RadExpander x:Name="radExpander" IsExpanded="False" VerticalContentAlignment="Top" telerik:AnimationManager.IsAnimationEnabled="True" Canvas.ZIndex="1" Background="Transparent"> <telerik:RadExpander.Header> <TextBlock x:Name="expanderCaption" Text="Header" /> </telerik:RadExpander.Header> <telerik:RadExpander.Content> <Border BorderBrush="Black" BorderThickness="1" Canvas.ZIndex="1" > <Grid Background="Cornsilk"> <Grid.BitmapEffect> <DropShadowBitmapEffect /> </Grid.BitmapEffect> <Grid.RowDefinitions> <RowDefinition></RowDefinition> <RowDefinition></RowDefinition> <RowDefinition></RowDefinition> <RowDefinition></RowDefinition> <RowDefinition></RowDefinition> </Grid.RowDefinitions> <Grid.ColumnDefinitions> <ColumnDefinition></ColumnDefinition> <ColumnDefinition></ColumnDefinition> <ColumnDefinition></ColumnDefinition> <ColumnDefinition></ColumnDefinition> <ColumnDefinition></ColumnDefinition> <ColumnDefinition></ColumnDefinition> <ColumnDefinition></ColumnDefinition> </Grid.ColumnDefinitions> <TextBlock Grid.Row="0" Grid.Column="0">Daily</TextBlock> <RadioButton Grid.Row="0" Grid.Column="1" Content="90D" ></RadioButton> <RadioButton Grid.Row="0" Grid.Column="2" Content="6M" ></RadioButton> <RadioButton Grid.Row="0" Grid.Column="3" Content="1Y" ></RadioButton> <RadioButton Grid.Row="0" Grid.Column="4" Content="2Y" ></RadioButton> <RadioButton Grid.Row="0" Grid.Column="5" Content="3Y" ></RadioButton> <RadioButton Grid.Row="0" Grid.Column="6" Content="5Y" ></RadioButton> <TextBlock Grid.Row="2" Grid.Column="0">Monthly</TextBlock> <RadioButton Grid.Row="2" Grid.Column="1" Content="5Y" ></RadioButton> <RadioButton Grid.Row="2" Grid.Column="2" Content="10Y" ></RadioButton> <RadioButton Grid.Row="2" Grid.Column="3" Content="15Y" ></RadioButton> <RadioButton Grid.Row="2" Grid.Column="4" Content="20Y" ></RadioButton> <RadioButton Grid.Row="2" Grid.Column="5" Content="25Y" ></RadioButton> <RadioButton Grid.Row="2" Grid.Column="6" Content="30Y" ></RadioButton
</Grid> </Border> </telerik:RadExpander.Content> </telerik:RadExpander> </Canvas> </Grid