Inheritance: System.Windows.Forms.Form
Example #1
0
 private void ShowColumns()
 {
     if (lvwItem.SelectedItems.Count > 0)
     {
         var index = lvwItem.SelectedItems[0].Tag as Index;
         var F     = new IndexColumnOrder(index, _model, _store);
         if (F.ShowDialog() == System.Windows.Forms.DialogResult.OK)
         {
             LoadGrid();
         }
     }
 }
Example #2
0
 private void ShowColumns()
 {
     if (lvwItem.SelectedItems.Count > 0)
     {
         var index = lvwItem.SelectedItems[0].Tag as Index;
         var F = new IndexColumnOrder(index, _model, _store);
         if (F.ShowDialog() == System.Windows.Forms.DialogResult.OK)
         {
             LoadGrid();
         }
     }
 }