コード例 #1
0
 private void toolStripMenuItem_RowLockOut_Click(object sender, EventArgs e)
 {
     if (this.toolStripMenuItem_RowLockOut.Text == "解锁")
     {
         if (this.myEventArgs_ShipClassification != null)
         {
             if (this.myEventArgs_ShipClassification.bool_GXTheory)
             {
                 Class_GXTheoryIssue.LockOut(this.dataGridView_Data.CurrentRow.Cells["IssueNo"].Value.ToString(), false);
                 this.RefreshData(true);
             }
             else
             {
                 Class_Issue.LockOut(this.dataGridView_Data.CurrentRow.Cells["IssueNo"].Value.ToString(), false);
                 this.RefreshData(true);
             }
         }
     }
     else
     {
     }
 }