2014年1月8日 星期三

C# TextBox強迫英文大寫

在KeyPress事件裡每輸入字元就強迫轉成大寫
或使用TextBox的CharacterCasing屬性

 if (char.IsLower(e.KeyChar))
{
      SerialNo_txt.SelectedText = char.ToUpper(e.KeyChar).ToString();
      //小寫
      SerialNo_txt.SelectedText = char.ToLower(e.KeyChar).ToString();
      e.Handled = true;
 }

沒有留言:

張貼留言

Visual Studio JS intellisense 失效解決方式

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