C#.net如何实现窗体之间的转换,下面是我的代码,总是提示错误(错误 1 找不到类型或命名空间名称“Form2
usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Da...
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Collections;
namespace goods
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void 商品信息ToolStripMenuItem_Click(object sender, EventArgs e)
{
Form2 frm2 = new Form2();
frm2.Show();
frm2.MdiParent = this;
} 展开
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Collections;
namespace goods
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void 商品信息ToolStripMenuItem_Click(object sender, EventArgs e)
{
Form2 frm2 = new Form2();
frm2.Show();
frm2.MdiParent = this;
} 展开
4个回答
展开全部
你可以这样试试
前提是你必须创建了Form2
Form2 frm2=new Form2();
frm2.ShowDialog();
frm2.MdiParent
前提是你必须创建了Form2
Form2 frm2=new Form2();
frm2.ShowDialog();
frm2.MdiParent
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
Form2 frm2 = new Form2();
}
private void 商品信息ToolStripMenuItem_Click(object sender, EventArgs e)
{
frm2.ShowDialog();
frm2.MdiParent = this;
}
}
{
public Form1()
{
InitializeComponent();
Form2 frm2 = new Form2();
}
private void 商品信息ToolStripMenuItem_Click(object sender, EventArgs e)
{
frm2.ShowDialog();
frm2.MdiParent = this;
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你的Form2可能没定义,或者类型是Private的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询