展开全部
你要的是这样的效果吧from2关闭的时候把ListBox的值传给Form1
我做一个简单的例子提供思路:
用委托就行,在Form2写方法
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace newForms
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
//定义委托
public delegate void Save();
//定义事件
public event Save OnSave;
private void button1_Click(object sender, EventArgs e)
{
Form1 one = new Form1();
r.s = listBox1.Items[0].ToString();
this.Close();
OnSave();//关闭的时候执行事件
}
public string returnListBox()
{
return listBox1.Items[0].ToString();
}
}
}
from1 的代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace newForms
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Form2 f = new Form2();
f.OnSave += new Form2.Save(f_OnSave);//定阅这个事件
f.Show();
}
void f_OnSave()
{
Form2 f = new Form2();
textBox1.Text = f.returnListBox();
//在这个方法里执行你要刷新的操作
}
}
}
我做一个简单的例子提供思路:
用委托就行,在Form2写方法
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace newForms
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
//定义委托
public delegate void Save();
//定义事件
public event Save OnSave;
private void button1_Click(object sender, EventArgs e)
{
Form1 one = new Form1();
r.s = listBox1.Items[0].ToString();
this.Close();
OnSave();//关闭的时候执行事件
}
public string returnListBox()
{
return listBox1.Items[0].ToString();
}
}
}
from1 的代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace newForms
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Form2 f = new Form2();
f.OnSave += new Form2.Save(f_OnSave);//定阅这个事件
f.Show();
}
void f_OnSave()
{
Form2 f = new Form2();
textBox1.Text = f.returnListBox();
//在这个方法里执行你要刷新的操作
}
}
}
参考资料: http://hi.baidu.com/10578488/blog/item/921abd9a08d7f157d1135e8d.html
展开全部
用委托就可以,子窗体定义一个委托,父窗体去实现它
子窗体类似:
public Action<object> action1;
然后在需要的地方
if(action1!=null) action1(listbox.selectitem.text);
父窗体中类似:
childfrom.action1 = (obj)=>{string a = (string)obj;}
子窗体类似:
public Action<object> action1;
然后在需要的地方
if(action1!=null) action1(listbox.selectitem.text);
父窗体中类似:
childfrom.action1 = (obj)=>{string a = (string)obj;}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在子窗体.SHOW()事件中加入THIS参数,然后在子窗体中用(主窗体名)OWNER来表示主窗体,然后可以用窗体属性来调用主窗体内各控件的参数
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在主窗体里建立属性,在构造子窗体时, 传入主窗体, 即子窗体的的构造函数改为带参数的, 接收主窗体, 然后将listbox值赋给主窗体的属性即可
Class FormMain()
{
private string listboxText;
public string ListboxText
{
set{ listboxText = value; }
}
}
Class FormChild()
{
private FormMain objFormMain;
public FormChild(FormMain objFormMain)
{
this.objFormMain = objFormMain;
}
你写的方法里()
{
objFormMain.ListboxText = listbox.SelectedValue或者SelectedItem(根据你需要);
}
}
Class FormMain()
{
private string listboxText;
public string ListboxText
{
set{ listboxText = value; }
}
}
Class FormChild()
{
private FormMain objFormMain;
public FormChild(FormMain objFormMain)
{
this.objFormMain = objFormMain;
}
你写的方法里()
{
objFormMain.ListboxText = listbox.SelectedValue或者SelectedItem(根据你需要);
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用委托
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你们老师没教你委托么
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询