Hello,
I'm adding a Toolwindow witha aRadlistview inside to a dockmanager, I wish that at load the toolwindow is as the screen I've attached
the code that creates the grid is
I'm adding a Toolwindow witha aRadlistview inside to a dockmanager, I wish that at load the toolwindow is as the screen I've attached
the code that creates the grid is
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);
}