日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > C# >内容正文

C#

c#中textbox属性_C#.Net中的TextBox.Visible属性与示例

發布時間:2023/12/1 C# 36 豆豆
生活随笔 收集整理的這篇文章主要介紹了 c#中textbox属性_C#.Net中的TextBox.Visible属性与示例 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

c#中textbox屬性

Here we are demonstrating use of Visible property of TextBox Control.

在這里,我們演示了TextBox Control的Visible屬性的使用。

Visible property contains two values

可見屬性包含兩個值

  • True: Using this - textbox can be visible on parent control form

    True :使用此選項-文本框在父控件窗體上可見

  • False: Using this - textbox can be hide on parent control form

    False :使用此方法-文本框可以隱藏在父控件窗體上

  • By default this is True.

    默認情況下為True。

    Example:

    例:

    In this example, we took a Windows form that contains a textbox and button named txtInput and btnShow respectively, we can change the name of the control using name property. And we set Visible property to False. Using property window, we can open property window using "F4" short-cut key for selected control.

    在此示例中,我們采用Windows窗體,其中分別包含一個名為txtInput和btnShow的文本框和按鈕,我們可以使用name屬性更改控件的名稱。 并且我們將Visible屬性設置為False 。 使用屬性窗口,我們可以使用“ F4”快捷鍵打開所選控件的屬性窗口。

    Code to show TextBox on 'button_click' Event:

    在“ button_click”事件上顯示TextBox的代碼:

    private void btnShow_Click(object sender, EventArgs e) {textInput.Visible = true; }

    翻譯自: https://www.includehelp.com/dot-net/textbox-visible-property-with-example.aspx

    c#中textbox屬性

    總結

    以上是生活随笔為你收集整理的c#中textbox属性_C#.Net中的TextBox.Visible属性与示例的全部內容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。