コード例 #1
0
ファイル: Form2.cs プロジェクト: Smile-Savour/WebApplication1
 private void radio_right_CheckedChanged(object sender, EventArgs e)
 {
     if (this.radio_right.Checked)
     {
         vig = CommonEnum.Vigilance.right;
     }
 }
コード例 #2
0
ファイル: Form2.cs プロジェクト: Smile-Savour/WebApplication1
 private void radio_bottom_CheckedChanged(object sender, EventArgs e)
 {
     if (this.radio_bottom.Checked)
     {
         vig = CommonEnum.Vigilance.bottom;
     }
 }
コード例 #3
0
ファイル: Form2.cs プロジェクト: Smile-Savour/WebApplication1
 private void radio_top_CheckedChanged(object sender, EventArgs e)
 {
     if (this.radio_top.Checked)
     {
         vig = CommonEnum.Vigilance.top;
     }
 }