2014年1月6日 星期一

RadioButton群組用法

將RadioButton放入panel中

  //取得選取得值
1
2
3
4
5
6
7
8
9
10
11
foreach (Control control in this.panel1.Controls)
{
   if (control is RadioButton)
   {
      RadioButton radio = control as RadioButton;
      if (radio.Checked)
      {
          appearance = radio.Text;
      }
   }
}

沒有留言:

張貼留言

Visual Studio JS intellisense 失效解決方式

  試了好久,發現到工具>選項>IntelliCode js項目設定啟用,重新開啟VS就正常了! 後來發現是TypeScript3.2版有問題停用,使用4.3版的TypeScript即可