示例#1
0
 private void FormGridView_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
 {
     // Open a new form with the corresponding widget lists
     var         pressed_cell    = e.RowIndex;
     BindingForm source          = (BindingForm)Storage.Parser.FormBindingSources[pressed_cell];
     var         WidgetContainer = GuiManager.CreateWidgetPanel(source);
 }