怎样调用其他窗体的控件
RT.现有窗体4一listview显示Access的数据,要求按button1就进入窗体5(修改数据/),怎样一按窗体4的button1,窗体5的textbox就自动显示出Access的内容 --------------------编程问答-------------------- 作为参数传进去 需要代码么?这个问题很简单 不需要发两个帖子 --------------------编程问答-------------------- 窗体对外暴露个函数就行了 --------------------编程问答-------------------- 把窗体4的TextBox控件设置为Public
然后BUTTON在点击的时候
Form4 f4= new Form4();
f4.TextBox1.Text = 你要的值;
f4.Show(); --------------------编程问答--------------------
private void btnTransfer_Click(object sender, EventArgs e)
{
Form2 f = new Form2(listView1.SelectedItems[0].Text);
f.Show();
}
string strReceive = string.Empty;
public Form2(string strContent)
{
InitializeComponent();
strReceive = strContent;
lblContent.Text = strReceive;
}
补充:.NET技术 , C#