91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#實現WinForm傳值的方法

發布時間:2021-06-16 14:46:05 來源:億速云 閱讀:160 作者:chen 欄目:編程語言

這篇文章主要講解了“C#實現WinForm傳值的方法”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“C#實現WinForm傳值的方法”吧!

C#實現WinForm傳值的思路:

從Form1傳遞到Form2: 2個窗體即兩個類,兩個窗體間的數據傳送,可以采用構造函數來實現。

從Form2返回到Form1,并傳遞數據:實例化Form2后,打f2用ShowDialog()方法,然后等待f2關閉時再回傳數據到Form1。

C#實現WinForm傳值步驟及代碼:

1:新建兩個窗口: Form1,Form2;

2:打開Form2,添加一個textBox:textBox1;添加一個Button:button1;然后添加一個構造函數:

//定義一個變量,用來傳值。  public string returnValue ;   public Form2(string txtValue)  {    InitializeComponent();     this.textBox1.Text = txtValue;  }

然后在button1的單擊事件中添加如下代碼:

private void button1_Click(object sender, EventArgs e)  {    returnValue = this.textBox1.Text;    this.Close();  }

3:Form1中添加一個textBox:textBox1;添加一個Button:button1;然后在button1的單擊事件中添加如下代碼:

private void button1_Click(object sender, EventArgs e)  {    string txtValue = this.textBox1.Text;    Form2 f2 = new Form2(txtValue);    f2.ShowDialog();    this.textBox1.Text = f2.returnValue;  }

Form1 中 (父窗口:)

public class Form1 : System.Windows.Forms.Form  {   private System.Windows.Forms.Button btnOpen;   public System.Windows.Forms.TextBox txtContent;   //注意是public     ........     ........    [STAThread]  static void Main()  {  Application.Run(new Form1());  }    private void btnOpen_Click(object sender, System.EventArgs e)   {    Form2 frm=new Form2(this);    frm.ShowDialog();   }   }

Form2中(子窗口)

public class Form2 : System.Windows.Forms.Form  {   private System.Windows.Forms.Button button1;   private System.Windows.Forms.TextBox txtValue;    private Form _parentForm=null;     public Form2()    {    InitializeComponent();     }    public Form2(Form parentForm)   {  InitializeComponent();  this._parentForm =parentForm;   }    ........   ........

更新父窗口中文本框中的值!

private void button1_Click(object sender, System.EventArgs e)  {   ((Form1)_parentForm).txtContent.Text =this.txtValue .Text ;  }

感謝各位的閱讀,以上就是“C#實現WinForm傳值的方法”的內容了,經過本文的學習后,相信大家對C#實現WinForm傳值的方法這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

芮城县| 东乡族自治县| 鹤庆县| 神池县| 报价| 旺苍县| 高州市| 开化县| 阜平县| 长寿区| 青田县| 宣威市| 福州市| 县级市| 开化县| 甘孜县| 盘山县| 凤翔县| 仙居县| 汕头市| 阿克陶县| 榆社县| 仙游县| 平潭县| 万荣县| 东台市| 诸暨市| 高阳县| 和田县| 仲巴县| 彝良县| 顺昌县| 苏州市| 扎囊县| 睢宁县| 新源县| 克东县| 西昌市| 东辽县| 务川| 土默特左旗|