or
Me.RadDockMain.MainDocumentContainer = Me.DocumentContainer1Dim im As New ImagePrimitiveim.ImageLayout = ImageLayout.Stretchim.StretchHorizontally = Trueim.StretchVertically = Trueim.Image = My.Resources.pic_Main_ImageDocumentContainer1.SplitPanelElement.StretchHorizontally = TrueDocumentContainer1.SplitPanelElement.StretchVertically = TrueDocumentContainer1.SplitPanelElement.Children.Add(im) this.radGridView1.DataSource = dsResult.Tables[0];
var checkBoxColumn = new GridViewCheckBoxColumn();
checkBoxColumn.HeaderText = " IsChecked ";
checkBoxColumn.Name = " IsChecked ";
checkBoxColumn.Width = 100;
checkBoxColumn.IsVisible = true;
checkBoxColumn.DataType = typeof(string);
checkBoxColumn.DataTypeConverter = new ToggleStateConverter();
this.rndGridView1.Columns[0] = checkBoxColumn;
This is just basic sample I have. I see the animation but somehow I am unable to drag the tiles. Any help is highly appriciated.
Thanks, Raj




public Form1(){ InitializeComponent(); this.radPanorama1.PanoramaElement.DragDropService.Stopping += new EventHandler<Telerik.WinControls.RadServiceStoppingEventArgs>(DragDropService_Stopping);}void DragDropService_Stopping(object sender, Telerik.WinControls.RadServiceStoppingEventArgs e){ if (e.Commit) { RadTileElement tile = this.radPanorama1.PanoramaElement.DragDropService.Context as RadTileElement; }}