or
							foreach (GridViewRowInfo row in radGV_.Rows)        {            row.Cells["BName"].Value = txtBName.Text;        }


| 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
