or

GridViewCommandColumn commandColumn2 = new GridViewCommandColumn(); commandColumn2.Name = "Pertinent"; //commandColumn2.UseDefaultText = true; //commandColumn2.DefaultText = "z"; commandColumn2.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter; commandColumn2.HeaderText = "Pertinent"; radGridDocuments.Columns.Remove("Pertinent"); radGridDocuments.MasterTemplate.Columns.Add(commandColumn2);



private void AttachMessageListView(string name) { logListView = new RadListView(); logListView.Columns.Add("Info"); logListView.Columns.Add("Timestamp"); logListView.Dock = DockStyle.Fill; logListView.ViewType = ListViewType.DetailsView; ToolWindow treeWindow = new ToolWindow(); treeWindow.Text = name; treeWindow.Controls.Add(logListView); //radDock1.DockWindow(treeWindow, DockPosition.Bottom); radDock1.DockControl(treeWindow, DockPosition.Bottom); VisualLogManager.SetRadListView(logListView); }