是啊,如果laod里有问题,就不行的,我贴一个从vc#里面的代码给你 :
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;namespace template_admin
{
/// <summary>
/// test 的摘要说明。
/// </summary>
public class test : System.Windows.Forms.Form
{
private System.Windows.Forms.Button button1;
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.Container components = null; public test()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent(); //
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
} /// <summary>
/// 清理所有正在使用的资源。
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
} #region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.button1 = new System.Windows.Forms.Button();
this.SuspendLayout();
// 
// button1
// 
this.button1.Location = new System.Drawing.Point(184, 80);
this.button1.Name = "button1";
this.button1.TabIndex = 0;
this.button1.Text = "button1";
// 
// test
// 
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.ClientSize = new System.Drawing.Size(292, 273);
this.Controls.Add(this.button1);
this.Name = "test";
this.Text = "test";
this.ResumeLayout(false); }
#endregion
}
}你贴上去试一试,改成你的名字空间

解决方案 »

  1.   

    1.请问为什么要改成自己的名字空间呢?
    2.我原来的程序里少了this.Controls.Add(this.button1),所以没显示出来,增加一个显示的控件,是不是需要三步?
    private System.Windows.Forms.Button button1;
    this.button1=new System.Windows.Forms.Button;
    this.Contral.Add(this.button1);能不能结构上跟我说说啊?小弟刚学,请指点。
      

  2.   

    当前的窗体添加一个BUTTON 控件
      

  3.   

    private System.Windows.Forms.Button button1;     //定义一个名为button1的按钮
    this.button1=new System.Windows.Forms.Button;    //将这个按钮实例化
    this.Contral.Add(this.button1);                  //把按钮加到包含它的容器里,你这里是窗体