コード例 #1
0
ファイル: SCBController.cs プロジェクト: icprog/SCBEmulator
 public void OTCXRelR()
 {
     if (isPowerOn && (otcBtn.XRelBtn == true))
     {
         otcBtn.XRelBtn = false;
         otcxyz.XRelBtnRelease();
     }
 }
コード例 #2
0
 private void checkBox1_CheckedChanged(object sender, EventArgs e)
 {
     if (checkBox1.Checked == true)
     {
         otcxyz.XRelBtnPress();
     }
     else
     {
         otcxyz.XRelBtnRelease();
     }
 }