下のようなプログラムを作ったのですが表示された次へのボタンを押してもラジオボタンが消えません。
どうすれば治るでしょうか?
C#
1using System; 2using System.Windows.Forms; 3 4class Program : Form 5{ 6private RadioButton rb1, rb2; 7private GroupBox gb; 8private Button bt; 9static int mode = 1; 10public static void Main() 11{ 12Application.Run 13(new Program()); 14} 15public Program() 16{ 17if (mode == 1) 18{ 19this.Text = "timer & alarm"; 20this.Width = 500; 21this.Height = 400; 22rb1 = new RadioButton(); 23rb2 = new RadioButton(); 24rb1.Text = "アラーム"; 25rb2.Text = "タイマー"; 26rb1.Dock = DockStyle.Left; 27rb2.Dock = 28DockStyle.Right; 29gb = new GroupBox(); 30gb.Text = 31"選択してください"; 32gb.Dock = DockStyle.Top; 33rb1.Parent = gb; 34rb2.Parent = gb; 35gb.Parent = this; 36bt = new Button(); 37bt.Text = "次へ"; 38bt.Dock = 39DockStyle.Bottom; 40bt.Parent = this; 41bt.Click += new 42EventHandler(bt_C); 43} 44if (mode == 2) 45{ 46 47} 48} 49static void bt_C 50(Object sender, EventArgs e) 51{ 52mode = 2; 53} 54}
直るとか直らないとかの問題ではなくて、消す処理が全く見当たりません。
回答1件
あなたの回答
tips
プレビュー