or
private void Button_Click(object sender, RoutedEventArgs e) { /* if (tvAdmin.Items.Count > 0) { foreach (RadTileViewItem tileItemIn in tvAdmin.Items) { tileItemIn.TileState = TileViewItemState.Minimized; } } */ RadTileViewItem tileItem = new RadTileViewItem(); RadFluidContentControl contentControl = new RadFluidContentControl(); contentControl.SmallContent = "Small content"; contentControl.Content = "Content"; contentControl.LargeContent = "Large content "; contentControl.State = FluidContentControlState.Large; contentControl.NormalToLargeThreshold = new Size(300, 400); contentControl.NormalToSmallThreshold = new Size(300, 200); tileItem.Content = contentControl; // tileItem.TileState = TileViewItemState.Maximized; tileItem.Header = tvAdmin.Items.Count.ToString(); tvAdmin.Items.Add(tileItem);}
Hi,
I have a GridViewComboBoxColumn bound to a datasource. I need to add a checkbox on the first row. How can we achieve this? Please help.
Thanks in advance,
Norbert John