C# 两个New出来的对象,相互怎么赋值? 20
代码:privatevoidbutton4_Click(objectsender,EventArgse){ButtonColorBut=newButton();Color...
代码:
private void button4_Click(object sender, EventArgs e)
{
Button ColorBut = new Button();
ColorBut.Text = "设置";
ColorBut.Location = new System.Drawing.Point(200, 10);
ColorBut.Click += new EventHandler(this.ColorBut_Click);
TextBox ColorText = new TextBox();
ColorText.Location = new System.Drawing.Point(10, 10);
Form SizeForm = new Form();
SizeForm.Size = new Size(300, 350);
SizeForm.Controls.Add(ColorBut);
SizeForm.Controls.Add(ColorText);
SizeForm.Show();
}
private void ColorBut_Click(object sender, EventArgs e)
{
//这里怎么给ColorText赋值???
}
谁能详细的讲讲
怎么获取父容器?
这个是WinFORM 不是网页 展开
private void button4_Click(object sender, EventArgs e)
{
Button ColorBut = new Button();
ColorBut.Text = "设置";
ColorBut.Location = new System.Drawing.Point(200, 10);
ColorBut.Click += new EventHandler(this.ColorBut_Click);
TextBox ColorText = new TextBox();
ColorText.Location = new System.Drawing.Point(10, 10);
Form SizeForm = new Form();
SizeForm.Size = new Size(300, 350);
SizeForm.Controls.Add(ColorBut);
SizeForm.Controls.Add(ColorText);
SizeForm.Show();
}
private void ColorBut_Click(object sender, EventArgs e)
{
//这里怎么给ColorText赋值???
}
谁能详细的讲讲
怎么获取父容器?
这个是WinFORM 不是网页 展开
5个回答
展开全部
可考虑将这些控件变为内部变量以便其他方法使用。如
private Button _ColorBut;
private TextBox _ColorBox;
private void button4_Click(object sender, EventArgs e)
{
_ColorBut = new Button();
ColorBut.Text = "设置";
ColorBut.Location = new System.Drawing.Point(200, 10);
ColorBut.Click += new EventHandler(this.ColorBut_Click);
_ColorText = new TextBox();
ColorText.Location = new System.Drawing.Point(10, 10);
Form SizeForm = new Form();
SizeForm.Size = new Size(300, 350);
SizeForm.Controls.Add(ColorBut);
SizeForm.Controls.Add(ColorText);
SizeForm.Show();
}
private void ColorBut_Click(object sender, EventArgs e)
{
if(_ColorText!=null)
{
_ColorText.Text = "******";
}
}
获取父容器可以在某个需要获取的控件上直接调用某些属性来实现。
如:
获取所在窗口 _ColorText.ParentForm
获取父容器 _ColorText.Parent
任何控件包括容器控件本身都可以调用以上两个属性来查看父级别的控件或窗口。
private Button _ColorBut;
private TextBox _ColorBox;
private void button4_Click(object sender, EventArgs e)
{
_ColorBut = new Button();
ColorBut.Text = "设置";
ColorBut.Location = new System.Drawing.Point(200, 10);
ColorBut.Click += new EventHandler(this.ColorBut_Click);
_ColorText = new TextBox();
ColorText.Location = new System.Drawing.Point(10, 10);
Form SizeForm = new Form();
SizeForm.Size = new Size(300, 350);
SizeForm.Controls.Add(ColorBut);
SizeForm.Controls.Add(ColorText);
SizeForm.Show();
}
private void ColorBut_Click(object sender, EventArgs e)
{
if(_ColorText!=null)
{
_ColorText.Text = "******";
}
}
获取父容器可以在某个需要获取的控件上直接调用某些属性来实现。
如:
获取所在窗口 _ColorText.ParentForm
获取父容器 _ColorText.Parent
任何控件包括容器控件本身都可以调用以上两个属性来查看父级别的控件或窗口。
展开全部
好久没有搞C#啦。
你可以从object sender反转找它的父容器。在其父容器中找ColorText,。看看行不
你可以从object sender反转找它的父容器。在其父容器中找ColorText,。看看行不
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你在NEW的时候少了一步,给你NEW出来的对象给一个唯一标识ID。你加上一句
ClientID
protected void Page_Load(object sender, EventArgs e)
{
Button ColorBut = new Button();
ColorBut.Text = "设置";
ColorBut.ID = "abtnColor";
ColorBut.Location = new System.Drawing.Point(200, 10);
ColorBut.Click += new EventHandler(ColorBut_Click);
TextBox ColorText = new TextBox();
ColorText.ClientID = "txtColor";
ColorText.Location = new System.Drawing.Point(10, 10);
Form SizeForm = new Form();
SizeForm.Size = new Size(300, 350);
SizeForm.ClientID = "form1";
SizeForm.Controls.Add(ColorBut);
SizeForm.Controls.Add(ColorText);
SizeForm.Show();
}
void ColorBut_Click(object sender, EventArgs e)
{
((TextBox)this.Page.FindControl("form1").FindControl("txtColor")).Text="ABC";
}
手工写的,不知道有没语法有错,我也没试。总之大概是这个意思,多用FindControl这个方法。
ClientID
protected void Page_Load(object sender, EventArgs e)
{
Button ColorBut = new Button();
ColorBut.Text = "设置";
ColorBut.ID = "abtnColor";
ColorBut.Location = new System.Drawing.Point(200, 10);
ColorBut.Click += new EventHandler(ColorBut_Click);
TextBox ColorText = new TextBox();
ColorText.ClientID = "txtColor";
ColorText.Location = new System.Drawing.Point(10, 10);
Form SizeForm = new Form();
SizeForm.Size = new Size(300, 350);
SizeForm.ClientID = "form1";
SizeForm.Controls.Add(ColorBut);
SizeForm.Controls.Add(ColorText);
SizeForm.Show();
}
void ColorBut_Click(object sender, EventArgs e)
{
((TextBox)this.Page.FindControl("form1").FindControl("txtColor")).Text="ABC";
}
手工写的,不知道有没语法有错,我也没试。总之大概是这个意思,多用FindControl这个方法。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
--没看好题,编辑掉
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
我觉得可以考虑一下,把之前NEW出来的那个ColorText放在SESSION里,试试哈。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询