This question is locked. New answers and comments are not allowed.
Dear all,
I created a three rows & two columns grid as follows:
I need to place a RadDock on column 0 row 1 with a RadSplitter and radpanegroup with panes inside, i achieve that as follows:
in the row 1 column 1 i have my MS-SL3 navigation frame where i want to open my related pages.
The issue is that the RadDock doesn't fit in the cell, How can I achieve that, it always leave a gray space wherever I dock the pane in the RadDock !!
Best regards
Waleed
I created a three rows & two columns grid as follows:
| <Grid x:Name="LayoutRoot" ShowGridLines="True" Background="Azure"> |
| <Grid.RowDefinitions> |
| <RowDefinition Height="Auto"/> |
| <RowDefinition Height="*" MinHeight="220" /> |
| <RowDefinition Height="Auto"/> |
| </Grid.RowDefinitions> |
| <Grid.ColumnDefinitions> |
| <ColumnDefinition Width="Auto"/> |
| <ColumnDefinition Width="*"/> |
| </Grid.ColumnDefinitions> |
I need to place a RadDock on column 0 row 1 with a RadSplitter and radpanegroup with panes inside, i achieve that as follows:
| <telerikDocking:RadDocking Grid.Row="1"> |
| <telerikDocking:RadSplitContainer InitialPosition="DockedLeft"> |
| <telerikDocking:RadPaneGroup> |
| <telerikDocking:RadPane Header="Cities"> |
| <TextBlock Text="Cities view comes here" /> |
| </telerikDocking:RadPane> |
| </telerikDocking:RadPaneGroup> |
| </telerikDocking:RadSplitContainer> |
| </telerikDocking:RadDocking> |
in the row 1 column 1 i have my MS-SL3 navigation frame where i want to open my related pages.
The issue is that the RadDock doesn't fit in the cell, How can I achieve that, it always leave a gray space wherever I dock the pane in the RadDock !!
Best regards
Waleed