在c#中点击主窗体的控件,调用子窗体,并在子窗体中显示内容??
比如说,子窗体中有一个文本框,我要调用子窗体,并且要在子窗体文本框中显示一定的内容,请高手给我详细代码,高手来。...
比如说,子窗体中有一个文本框,我要调用子窗体,并且要在子窗体文本框中显示一定的内容,请高手给我详细代码,高手来。
展开
推荐于2018-03-21
展开全部
添加一个窗体,名为form2,原窗体名为form1,工程名为 form ,双击Form2.Designer.cs:将 private System.Windows.Forms.TextBox textBox1; 改为:public System.Windows.Forms.TextBox textBox1; form1中的命令按钮的单击代码: using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;namespace form
{
public partial class Form1 : Form
{
public Form2 f2 = new Form2();
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
f2.Owner = this;
f2.textBox1.Text = "ffddsf";
f2.ShowDialog();
}
}
}
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;namespace form
{
public partial class Form1 : Form
{
public Form2 f2 = new Form2();
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
f2.Owner = this;
f2.textBox1.Text = "ffddsf";
f2.ShowDialog();
}
}
}
2014-05-21
展开全部
创建子窗体时 顺便给传个值就是咯
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询