public DemoGridArchitecture() { InitializeComponent(); // Set the sample description text ShellServices.LoadRtbText(richTextBox1, "SuperGridDemo.Resources.DemoArchitecture.rtf"); }
public Form1() { InitializeComponent(); InitializeGrid(); ShellServices.LoadRtbText(rtb, "SuperGridDemo.Resources.Welcome.rtf"); }
public DemoGridBasics0() { InitializeComponent(); // Initialize the grid and set the sample description text InitializeGrid(); ShellServices.LoadRtbText(richTextBox1, "SuperGridDemo.Resources.DemoBasics0.rtf"); }
public DemoFileExplorer() { InitializeComponent(); // Initialize our grid and // set the sample description text InitializeGrid(); ShellServices.LoadRtbText(richTextBox1, "SuperGridDemo.Resources.DemoFileExplorer.rtf"); }
public DemoUserEdit() { InitializeComponent(); // Initialize the grid, ComboBoxes, // Audio Clip, etc, and set the sample description text. InitializeGrid(); ShellServices.LoadRtbText(richTextBox1, "SuperGridDemo.Resources.DemoUserEdit.rtf"); }
public DemoGridBinding() { InitializeComponent(); // Initialize the grid, selected comboBox // Data Source, and the sample description text. InitializeGrid(); ShellServices.LoadRtbText(richTextBox1, "SuperGridDemo.Resources.DemoGridBinding.rtf"); }
public DemoGridBasics2() { InitializeComponent(); // Initialize the grid, SortLevel // ComboBox, and the sample description text. InitializeGrid(); InitSortLevelComboBox(); ShellServices.LoadRtbText(richTextBox1, "SuperGridDemo.Resources.DemoBasics2.rtf"); }
public DemoMasterDetail() { InitializeComponent(); // Initialize the grid, bind to our grid data // and set the sample description text InitializeGrid(); BindCustomerData(); ShellServices.LoadRtbText(richTextBox1, "SuperGridDemo.Resources.DemoMasterDetail.rtf"); }
public DemoSpreadsheet() { InitializeComponent(); // Initialize the grid, color pickers, // and set the sample description text InitializeGrid(); InitColorPickers(); ShellServices.LoadRtbText(richTextBox1, "SuperGridDemo.Resources.DemoSpreadsheet.rtf"); }
public DemoExtendedFiltering() { InitializeComponent(); // Initialize base form controls and the grid // and then set the sample description text InitControls(); InitializeGrid(); ShellServices.LoadRtbText(richTextBox1, "SuperGridDemo.Resources.DemoExtendedFiltering.rtf"); }
public DemoDragDrop() { InitializeComponent(); // Initialize the grid and // set the sample description text InitializeGrid(); InitializeListBox(); InitializeTreeView(); InitializeAdvTree(); ShellServices.LoadRtbText(richTextBox1, "SuperGridDemo.Resources.DemoDragDrop.rtf"); superGridControl1.ItemDrag += SuperGridControlItemDrag; }