首页 > 学院 > 开发设计 > 正文

C#窗体间通讯的几种处理方法

2019-11-17 03:03:16
字体:
来源:转载
供稿:网友
C#窗体间通讯的几种处理方法

应用程序开发中,经常需要多窗体之间进行数据通信,写几个例子,把几种常用的通信方式总结一下:

主窗体Form1是一个ListBox,单击选中某列时,弹出窗体Form2,Form2中两个控件,一个是TextBox,显示选中的该列的文本,另一个是按钮,点击时将修改后的值回传,且在Form1中修改相应的列的文本,同时Form2关闭。

方法一:传值

最先想到的,Form2构造函数中接收一个string类型参数,即Form1中选中行的文本,将Form2的TextBox控件的Text设置为该string,即完成了Form1向Form2的传值。当Form2的AcceptChange按钮按下,需要修改Form1中ListBox中相应列的值,因此可以考虑同时将Form1中的ListBox控件当参数也传入Form2,所有修改工作都在Form2中完成,根据这个思路,Form2代码如下:C#代码收藏代码
  1. publicpartialclassForm2:Form
  2. {
  3. PRivatestringtext;
  4. privateListBoxlb;
  5. privateintindex;
  6. //构造函数接收三个参数:选中行文本,ListBox控件,选中行索引
  7. publicForm2(stringtext,ListBoxlb,intindex)
  8. {
  9. this.text=text;
  10. this.lb=lb;
  11. this.index=index;
  12. InitializeComponent();
  13. this.textBox1.Text=text;
  14. }
  15. privatevoidbtnChange_Click(objectsender,EventArgse)
  16. {
  17. stringtext=this.textBox1.Text;
  18. this.lb.Items.RemoveAt(index);
  19. this.lb.Items.Insert(index,text);
  20. this.Close();
  21. }
  22. }

Form1中new窗体2时这么写:

C#代码收藏代码
  1. publicpartialclassForm1:Form
  2. {
  3. intindex=0;
  4. stringtext=null;
  5. publicForm1()
  6. {
  7. InitializeComponent();
  8. }
  9. privatevoidlistBox1_SelectedIndexChanged(objectsender,EventArgse)
  10. {
  11. if(this.listBox1.SelectedItem!=null)
  12. {
  13. text=this.listBox1.SelectedItem.ToString();
  14. index=this.listBox1.SelectedIndex;
  15. //构造Form2同时传递参数
  16. Form2form2=newForm2(text,listBox1,index);
  17. form2.ShowDialog();
  18. }
  19. }

OK,方法一的解决方法就是这样,好处是直观,需要什么就传什么,缺点也是显而易见的,如果窗体1中需要修改的是一百个控件,难道构造的时候还传100个参数进去?况且如果其他窗体仍然需要弹Form2,那Form2就废了,只能供窗体1使用,除非写重载的构造函数,不利于代码的复用,继续看下一个方法。

方法二:继承这个方法我试了很多次,继承的确可以做,但是麻烦不说,还不方便,因此个人认为如果为了互相操作数据而使用继承,是不合适的,但既然是个方法,就扔出来看看,实际作用≈0。Form2:C#代码收藏代码
  1. //声明Form2继承于Form1
  2. publicpartialclassForm2:Form1
  3. {
  4. publicintindex;
  5. publicListBoxlb;
  6. publicForm2(stringtext)
  7. {
  8. //将继承过来的listBox设置为不可见
  9. this.listBox1.Visible=false;
  10. InitializeComponent();
  11. this.textBox1.Text=text;
  12. }
  13. privatevoidbtnChange_Click(objectsender,EventArgse)
  14. {
  15. stringtext=this.textB
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表