| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 560 人关注过本帖
标题:动态添加控件问题
取消只看楼主 加入收藏
chzfmx
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2011-7-10
结帖率:100%
收藏
已结贴  问题点数:5 回复次数:0 
动态添加控件问题
初学C#,写了段代码,在Form1  load时动态添加一个textBox控件和Button控件,然后在Button控件单击事件中用到textBox的text属性,下面是代码,

private void Form1_Load(object sender, EventArgs e)
        {
            TextBox txbox = new TextBox();
            txbox.Name = "textBox1";
            txbox.Text = "aaa";
            txbox.Location = new Point(15,15);
            txbox.Size = new Size(150,20);
            this.Controls.Add(txbox);

            Button btn = new Button();
            btn.Text = "sure";
            btn.Location = new Point(165,15);
            btn.Size = new Size(60,20);
            btn.Click += new EventHandler(btn_Click);
            this.Controls.Add(btn);
        }
        void btn_Click(object senedr, EventArgs e)
        {
            MessageBox.Show(txbox.text);
        }

编译时提示: Error    1    The name 'txbox' does not exist in the current context    d:\ 我的文档\Visual Studio 2005\Mytest\Mytest\test\Form1.cs    36    29    test

不知道怎么回事啊,怎么找不到textBox控件呢!!!

搜索更多相关主题的帖子: private 动态 
2011-08-22 15:25
快速回复:动态添加控件问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.023888 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved