当前位置:   article > 正文

C# 子窗体与父窗体之间几种传值的方式_c#父窗体传值给子窗体

c#父窗体传值给子窗体

做了很多项目,很多项目都用到子父窗体之间的传值。。

父窗体传入子窗体都比较简单,而子窗体传入父窗体因为有很多不通道的需求,所以·搞起来有点头大。


先说父窗体传入子窗体:

将父窗体控件上的值传入子窗体的控件上:

Form1为父窗体

Form2为子窗体

Form1 单击按钮打开Form2,Form2关闭的时候把值传到Form1的控件上

代码:

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. namespace WindowsFormsApplication3
  11. {
  12. public partial class Form1 : Form
  13. {
  14. public Form1()
  15. {
  16. InitializeComponent();
  17. }
  18. private void button1_Click(object sender, EventArgs e)
  19. {
  20. Form2 f2 = new Form2(this.textBox1.Text);
  21. if (f2.ShowDialog() == DialogResult.OK)
  22. {
  23. this.textBox1.Text = f2.TextBoxValue;
  24. f2.Close();
  25. }
  26. }
  27. }
  28. }


Form2的代码:

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. namespace WindowsFormsApplication3
  11. {
  12. public partial class Form2 : Form
  13. {
  14. public Form2():this(null)
  15. {
  16. }
  17. public string TextBoxValue
  18. {
  19. get { return textBox1.Text; }
  20. set { textBox1.Text = value; }
  21. }
  22. public Form2(string value) {
  23. InitializeComponent();
  24. TextBoxValue = value;
  25. }
  26. private void button1_Click(object sender, EventArgs e)
  27. {
  28. this.DialogResult = DialogResult.OK;
  29. }
  30. }
  31. }

这是传值方式是最基本,租常见的一种,还有一种方式,就是打开子窗体Form2后,在往Form2上的控件上输入值的时候,Form1上的控件上的值也跟着变化,

对于这种情况,问你就需要使用 事件委托来完成。

----------------------------------------------------------快乐的分割线-------------------------------------------------------------

Form1代码:

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. namespace WindowsFormsApplication3
  11. {
  12. public partial class Form1 : Form
  13. {
  14. public Form1()
  15. {
  16. InitializeComponent();
  17. }
  18. private void button2_Click(object sender, EventArgs e)
  19. {
  20. Form2 f2 = new Form2();
  21. f2.TextBoxChanged += new EventHandler(
  22. (sender1, e1) =>
  23. { textBox2.Text = f2.TextBoxValue; }
  24. );
  25. f2.FormClosed += new FormClosedEventHandler(
  26. (sender2, e2) => { f2 = null; }
  27. );
  28. f2.Show(this);
  29. }
  30. }
  31. }


Form2代码:

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. namespace WindowsFormsApplication3
  11. {
  12. public partial class Form2 : Form
  13. {
  14. public Form2():this(null)
  15. {
  16. }
  17. public string TextBoxValue
  18. {
  19. get { return textBox1.Text; }
  20. set { textBox1.Text = value; }
  21. }
  22. public event EventHandler TextBoxChanged;
  23. public Form2(string value) {
  24. InitializeComponent();
  25. TextBoxValue = value;
  26. }
  27. private void button1_Click(object sender, EventArgs e)
  28. {
  29. this.DialogResult = DialogResult.OK;
  30. }
  31. private void textBox1_TextChanged(object sender, EventArgs e)
  32. {
  33. if (TextBoxChanged != null)
  34. {
  35. TextBoxChanged(this, e);
  36. }
  37. }
  38. }
  39. }


这里需要使用 TextBox的TextChanged事件。



上面就是两种子窗体传入父窗体值的方法。



声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/690648
推荐阅读
相关标签
  

闽ICP备14008679号