标题:找不到类型或空间名称
只看楼主
torf
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2006-2-21
 问题点数:0 回复次数:0 
找不到类型或空间名称

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace WindowsApplication1
{
public partial class Form1 : Form
{
private System.ComponentModel.Container compontents = null;
public Form1()
{
InitializeComponent();
}

private void Form1_Load(object sender, EventArgs e)
{

}

private void button1_Click(object sender, EventArgs e)
{
Form2 newForm = new Form2();
newForm.show();
this.Hide();
}

private void newToolStripMenuItem_Click(object sender, EventArgs e)
{
Form2 newForm = new Form2();
newForm.show();
this.Hide();
}

private void btnform1_CheckedChanged(object sender, EventArgs e)
{
Form1 newForm = new Form1();
newForm.show();
this.Hide();

}

private void btnform2_CheckedChanged(object sender, EventArgs e)
{
Form2 newForm = new Form2();
newForm.show();
this.Hide();

}

private void btnform3_CheckedChanged(object sender, EventArgs e)
{
Form3 newForm = new Form3();
newForm.show();
this.Hide();
}
}
}




搜索更多相关主题的帖子: 名称 空间 类型 
2006-06-10 20:12



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-71202-1-1.html




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

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