This question is locked. New answers and comments are not allowed.
I am trying to get my tile view to have a single Tile in the first column taking 100% of the height and then have a second column that has 2 tiles in it sharing 50% of the height, but I cannot get it to layout correctly. This is a code sample:
But the 3rd tile shows up below the first one instead of next to it.
Is this possible?
Thanks,
Eric
<telerik:RadTileView Grid.Row=
"2"
Regions:RegionManager.RegionName=
"ClaimsTilesRegion"
Background=
"#00C0C0C0"
MaxColumns=
"2"
ColumnWidth=
"auto"
Margin=
"9,9,9,12"
MinimizedColumnWidth=
"350"
IsDockingEnabled=
"True"
IsItemDraggingEnabled=
"False"
IsSelectionEnabled=
"False"
IsItemsSizeInPercentages=
"True"
IsVirtualizing=
"False"
PreservePositionWhenMaximized=
"true"
RowHeight=
"auto"
MinimizedRowHeight=
"Auto"
telerik:TileViewPanel.IsColumnsShrinkEnabled=
"True"
telerik:TileViewPanel.IsRowsShrinkEnabled=
"True"
telerik:TileViewPanel.IsSizeBoundToPosition=
"True"
>
<telerik:RadTileViewItem RestoredWidth=
"50"
RestoredHeight=
"100"
>...</telerik:RadTileViewItem>
<telerik:RadTileViewItem RestoredWidth=
"50"
RestoredHeight=
"50"
>...</telerik:RadTileViewItem>
<telerik:RadTileViewItem RestoredWidth=
"50"
RestoredHeight=
"50"
>...</telerik:RadTileViewItem>
</telerik:RadTileView>
Is this possible?
Thanks,
Eric