コード例 #1
0
 /* Pretty Simple, the opposite of the function above
  * removes the and disables the functionality of the
  * sheet*/
 private void TurnOffSheet(counterSheet sheet)
 {
     sheet.Enabled = false;
     sheet.Visible = false;
 }
コード例 #2
0
 /* Enables the sheet*/
 private void TurnOnSheet(counterSheet sheet)
 {
     sheet.Visible = true;
     sheet.Enabled = true;
 }