c#中textbox属性_C#.Net中带有示例的TextBox.Multiline属性
c#中textbox屬性
Here we are demonstrating use of Multiline property of the TextBox Control.
在這里,我們演示了TextBox控件的Multiline屬性的使用。
Multiline property contains two values:
多行屬性包含兩個值:
True: We can enter text in more than one line
正確 :我們可以輸入多行文字
False: We can enter text in only single line
False :我們只能在一行中輸入文本
By default this is False.
默認情況下為False。
Example:
例:
In this example, we took a Windows form that contains a textbox named txtInput, we can change name of the control using name property. And we set Multiline property to True using property window, we can open property window using "F4" short-cut key for selected control.
在此示例中,我們采用Windows窗體,其中包含一個名為txtInput的文本框,我們可以使用name屬性更改控件的名稱。 然后,使用屬性窗口將Multiline屬性設置為True ,可以使用“ F4”快捷鍵為所選控件打開屬性窗口。
We can change this property using code:
我們可以使用以下代碼更改此屬性:
private void Form1_Load(object sender, EventArgs e) {textInput.Multiline = true; }翻譯自: https://www.includehelp.com/dot-net/textbox-multiline-property-with-example.aspx
c#中textbox屬性
總結
以上是生活随笔為你收集整理的c#中textbox属性_C#.Net中带有示例的TextBox.Multiline属性的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Java LocalDateTime类|
- 下一篇: parse 日期_日期parse()方法