This commit is contained in:
2022-07-02 21:21:56 +00:00
parent d36888acdc
commit e438fc7f65
2 changed files with 181 additions and 0 deletions

View File

@@ -185,6 +185,7 @@
//
// gridAya
//
this.gridAya.AllowDrop = true;
this.gridAya.AllowUserToAddRows = false;
this.gridAya.AllowUserToDeleteRows = false;
this.gridAya.AllowUserToResizeRows = false;
@@ -212,10 +213,18 @@
this.gridAya.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.gridAya.Size = new System.Drawing.Size(370, 533);
this.gridAya.TabIndex = 4;
this.gridAya.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridAya_CellClick);
this.gridAya.SelectionChanged += new System.EventHandler(this.grid_SelectionChanged);
this.gridAya.DragDrop += new System.Windows.Forms.DragEventHandler(this.gridAya_DragDrop);
this.gridAya.DragEnter += new System.Windows.Forms.DragEventHandler(this.gridAya_DragEnter);
this.gridAya.DragOver += new System.Windows.Forms.DragEventHandler(this.gridAya_DragOver);
this.gridAya.MouseDown += new System.Windows.Forms.MouseEventHandler(this.gridAya_MouseDown);
this.gridAya.MouseMove += new System.Windows.Forms.MouseEventHandler(this.gridAya_MouseMove);
this.gridAya.MouseUp += new System.Windows.Forms.MouseEventHandler(this.gridAya_MouseUp);
//
// gridQB
//
this.gridQB.AllowDrop = true;
this.gridQB.AllowUserToAddRows = false;
this.gridQB.AllowUserToDeleteRows = false;
this.gridQB.AllowUserToResizeRows = false;
@@ -243,6 +252,12 @@
this.gridQB.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.gridQB.Size = new System.Drawing.Size(381, 533);
this.gridQB.TabIndex = 5;
this.gridQB.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridQB_CellClick);
this.gridQB.DragDrop += new System.Windows.Forms.DragEventHandler(this.gridQB_DragDrop);
this.gridQB.DragEnter += new System.Windows.Forms.DragEventHandler(this.gridQB_DragEnter);
this.gridQB.MouseDown += new System.Windows.Forms.MouseEventHandler(this.gridQB_MouseDown);
this.gridQB.MouseMove += new System.Windows.Forms.MouseEventHandler(this.gridQB_MouseMove);
this.gridQB.MouseUp += new System.Windows.Forms.MouseEventHandler(this.gridQB_MouseUp);
//
// splitContainer1
//