or
this.radDock1.MainDocumentContainer.BackColor = Color.Transparent; |
Telerik.WinControls.RadElement el = this.radDock1.MainDocumentContainer.RootElement.Children[0].Children[0]; |
(el as Telerik.WinControls.Primitives.FillPrimitive).BackColor = this.BackColor; |
Private Sub RadGridView1_CommandCellClick(sender As Object, e As System.EventArgs) Handles RadGridView1.CommandCellClick
Dim gcce As GridCommandCellElement = TryCast(sender, GridCommandCellElement)
'GridViewCommandColumn
If gcce Is Nothing OrElse gcce.Value Is Nothing Then
Return
End If
MessageBox.Show(gcce.Value.ToString())
End Sub
I deployed the system in a touch screen device however the dock windows was not shown properly, only a part of the window is appearing.
How this problem can be resolved?
How can we make it fit to any resolution?
Thanks in advance