C# 的隨手筆記 1 - textBox 有趣的功能 1. 是否只讀不寫(Read Only) 2. 捲軸 (Scrollbar) 3. 設定成輸入密碼格式(PasswordChar)

textBox  有趣的功能  

1. 是否只讀不寫(Read Only)   

2. 捲軸 (Scrollbar)  

3. 設定成輸入密碼格式(PasswordChar) 

 

1. 是否只讀不寫(Read Only)

 

 

 

 

 

 textBox1.ReadOnly = true;

如果True 就只能讀不能寫

如果false 就只能讀能寫

 

 

2. 捲軸 (Scrollbar)

 

 

 

 

 

 

textBox1.ScrollBars = ScrollBars.Vertical;
textBox1.ScrollBars = ScrollBars.Horizontal;
textBox1.ScrollBars = ScrollBars.Both;

設定後就會產生  捲軸 (Scrollbar)

 

 

 

 

 

 

3. 設定成輸入密碼格式(PasswordChar) 

就像密碼一樣怎麼輸入都是同一種格式

 

舉個例子,如下圖把圖是設定為星號 〝 * 〞

 

 

 

 

 

 

 			// Set to "123" text.
            textBox1.Text = "123";
            // The password character is an asterisk.
            textBox1.PasswordChar = '*';

           

 

結果如下圖, 123變成了 ***