(窗体布局)关于子窗体问题...急!

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(窗体布局)关于子窗体问题...急!相关的知识,希望对你有一定的参考价值。

C #windows应用程序:
有两个窗口FORM1和FORM2和按钮BUTT1
点击按钮显示FORM2. FORM2是FORM1的子窗体.
FORM2.MdiParent = this;
xx.show();

帮忙解决两个问题
1:IsMdiContainer设定成true 后 FORM1放子窗体的颜色变成了灰色怎么改颜色
2:重复点击按钮 会重复出现相同的窗体.用种稍微简便点的方法解决只能出现一个相同的子窗体.(我的不同的子窗体特别多) 最好是下面这种形式.
帮我弄好了再加分..急~!!!

form2 xx new= form2();
调用一个方法检查窗体存不存在(form2);
FORM2.MdiParent = this;
xx.show();
也可以不是那种形式 能实现就行!

你想要的是MDI多文档记事本对吧
你可以去CSDN,编程中国
很多很多的论坛提问
比在这儿好很多的

其实你的问题不难解决
你去bbs.bccn.net 注册后打开这个网址
http://bbs.bccn.net/search.php?searchid=75&orderby=lastpost&ascdesc=desc&searchsubmit=yes
你肯定能找到你要的答案

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

namespace UseMDI

/// <summary>
/// Form1 的摘要说明。
/// </summary>
public class frmMain : System.Windows.Forms.Form

private System.Windows.Forms.MenuItem mnuFile;
private System.Windows.Forms.MenuItem mnuFileNew;
private System.Windows.Forms.MenuItem menuItem1;
private System.Windows.Forms.MenuItem mnuFileExit;
private System.Windows.Forms.MenuItem mnuWindows;
private System.Windows.Forms.MenuItem mnuWinCascade;
private System.Windows.Forms.MenuItem mnuWinHorizontal;
private System.Windows.Forms.MenuItem mnuWinVertical;
private System.Windows.Forms.MainMenu mainMenu1;

/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.Container components = null;

public frmMain()

//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();

this.childNumber=0;

//
// 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.mainMenu1 = new System.Windows.Forms.MainMenu();
this.mnuFile = new System.Windows.Forms.MenuItem();
this.mnuFileNew = new System.Windows.Forms.MenuItem();
this.menuItem1 = new System.Windows.Forms.MenuItem();
this.mnuFileExit = new System.Windows.Forms.MenuItem();
this.mnuWindows = new System.Windows.Forms.MenuItem();
this.mnuWinCascade = new System.Windows.Forms.MenuItem();
this.mnuWinHorizontal = new System.Windows.Forms.MenuItem();
this.mnuWinVertical = new System.Windows.Forms.MenuItem();
//
// mainMenu1
//
this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[]
this.mnuFile,
this.mnuWindows);
//
// mnuFile
//
this.mnuFile.Index = 0;
this.mnuFile.MenuItems.AddRange(new System.Windows.Forms.MenuItem[]
this.mnuFileNew,
this.menuItem1,
this.mnuFileExit);
this.mnuFile.Text = "文件(&F)";
//
// mnuFileNew
//
this.mnuFileNew.Index = 0;
this.mnuFileNew.Text = "新建(&N)";
this.mnuFileNew.Click += new System.EventHandler(this.mnuFileNew_Click);
//
// menuItem1
//
this.menuItem1.Index = 1;
this.menuItem1.Text = "-";
//
// mnuFileExit
//
this.mnuFileExit.Index = 2;
this.mnuFileExit.Text = "退出(&E)";
this.mnuFileExit.Click += new System.EventHandler(this.mnuFileExit_Click);
//
// mnuWindows
//
this.mnuWindows.Index = 1;
this.mnuWindows.MdiList = true;
this.mnuWindows.MenuItems.AddRange(new System.Windows.Forms.MenuItem[]
this.mnuWinCascade,
this.mnuWinHorizontal,
this.mnuWinVertical);
this.mnuWindows.MergeOrder = 2;
this.mnuWindows.Text = "窗体(&W)";
//
// mnuWinCascade
//
this.mnuWinCascade.Index = 0;
this.mnuWinCascade.Text = "层叠(&C)";
this.mnuWinCascade.Click += new System.EventHandler(this.mnuWinCascade_Click);
//
// mnuWinHorizontal
//
this.mnuWinHorizontal.Index = 1;
this.mnuWinHorizontal.Text = "水平平铺(&H)";
this.mnuWinHorizontal.Click += new System.EventHandler(this.mnuWinHorizontal_Click);
//
// mnuWinVertical
//
this.mnuWinVertical.Index = 2;
this.mnuWinVertical.Text = "垂直平铺(&V)";
this.mnuWinVertical.Click += new System.EventHandler(this.mnuWinVertical_Click);
//
// frmMain
//
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.ClientSize = new System.Drawing.Size(344, 281);
this.IsMdiContainer = true;
this.KeyPreview = true;
this.Menu = this.mainMenu1;
this.Name = "frmMain";
this.Text = "frmMain";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.Load += new System.EventHandler(this.frmMain_Load);


#endregion

/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()

Application.Run(new frmMain());


private void frmMain_Load(object sender, System.EventArgs e)




int childNumber = 0;
private void mnuFileNew_Click(object sender, System.EventArgs e)

frmChild newChild=new frmChild();
newChild.MdiParent=this;
newChild.Text="child" + (++this.childNumber);
newChild.Show();


private void mnuFileExit_Click(object sender, System.EventArgs e)

this.Close();


private void mnuWinCascade_Click(object sender, System.EventArgs e)

this.LayoutMdi(System.Windows.Forms.MdiLayout.Cascade);


private void mnuWinHorizontal_Click(object sender, System.EventArgs e)

this.LayoutMdi(System.Windows.Forms.MdiLayout.TileHorizontal);


private void mnuWinVertical_Click(object sender, System.EventArgs e)

this.LayoutMdi(System.Windows.Forms.MdiLayout.TileVertical);



上面这个是父窗体的代码
下面的是子窗体的代码

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;

namespace UseMDI

/// <summary>
/// Form2 的摘要说明。
/// </summary>
public class frmChild : System.Windows.Forms.Form

private System.Windows.Forms.MenuItem mnuFormat;
private System.Windows.Forms.TextBox txtNoteText;
private System.Windows.Forms.MenuItem mnuFormatFont;
private System.Windows.Forms.MenuItem mnuFormatBackColor;
private System.Windows.Forms.MenuItem mnuFormatForeColor;
private System.Windows.Forms.MainMenu mainMenu1;
private System.Windows.Forms.ColorDialog colorDialog1;
private System.Windows.Forms.FontDialog fontDialog1;
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.Container components = null;

public frmChild()

//
// 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.mainMenu1 = new System.Windows.Forms.MainMenu();
this.mnuFormat = new System.Windows.Forms.MenuItem();
this.mnuFormatFont = new System.Windows.Forms.MenuItem();
this.txtNoteText = new System.Windows.Forms.TextBox();
this.mnuFormatBackColor = new System.Windows.Forms.MenuItem();
this.mnuFormatForeColor = new System.Windows.Forms.MenuItem();
this.colorDialog1 = new System.Windows.Forms.ColorDialog();
this.fontDialog1 = new System.Windows.Forms.FontDialog();
this.SuspendLayout();
//
// mainMenu1
//
this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[]
this.mnuFormat);
//
// mnuFormat
//
this.mnuFormat.Index = 0;
this.mnuFormat.MenuItems.AddRange(new System.Windows.Forms.MenuItem[]
this.mnuFormatFont,
this.mnuFormatBackColor,
this.mnuFormatForeColor);
this.mnuFormat.MergeOrder = 1;
this.mnuFormat.Text = "格式(&O)";
//
// mnuFormatFont
//
this.mnuFormatFont.Index = 0;
this.mnuFormatFont.Text = "字体(&F)";
this.mnuFormatFont.Click += new System.EventHandler(this.mnuFormatFont_Click);
//
// txtNoteText
//
this.txtNoteText.Dock = System.Windows.Forms.DockStyle.Fill;
this.txtNoteText.Location = new System.Drawing.Point(0, 0);
this.txtNoteText.Multiline = true;
this.txtNoteText.Name = "txtNoteText";
this.txtNoteText.Size = new System.Drawing.Size(320, 257);
this.txtNoteText.TabIndex = 0;
this.txtNoteText.Text = "";
//
// mnuFormatBackColor
//
this.mnuFormatBackColor.Index = 1;
this.mnuFormatBackColor.Text = "背景色...";
this.mnuFormatBackColor.Click += new System.EventHandler(this.mnuFormatBackColor_Click);
//
// mnuFormatForeColor
//
this.mnuFormatForeColor.Index = 2;
this.mnuFormatForeColor.Text = "前景色...";
this.mnuFormatForeColor.Click += new System.EventHandler(this.mnuFormatForeColor_Click);
//
// frmChild
//
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.ClientSize = new System.Drawing.Size(320, 257);
this.Controls.Add(this.txtNoteText);
this.Menu = this.mainMenu1;
this.Name = "frmChild";
this.Load += new System.EventHandler(this.frmChild_Load);
this.ResumeLayout(false);


#endregion

private void frmChild_Load(object sender, System.EventArgs e)

this.fontDialog1.ShowColor=true;
this.fontDialog1.ShowEffects=true;

this.colorDialog1.AllowFullOpen=true;


private void mnuFormatFont_Click(object sender, System.EventArgs e)

if(this.fontDialog1.ShowDialog()==DialogResult.OK)

this.txtNoteText.Font=this.fontDialog1.Font;
this.txtNoteText.ForeColor=this.fontDialog1.Color;



private void mnuFormatBackColor_Click(object sender, System.EventArgs e)

if(this.colorDialog1.ShowDialog()==DialogResult.OK)

this.txtNoteText.BackColor=this.colorDialog1.Color;



private void mnuFormatForeColor_Click(object sender, System.EventArgs e)

if(this.colorDialog1.ShowDialog()==DialogResult.OK)

this.txtNoteText.ForeColor=this.colorDialog1.Color;



参考技术A 环境选项

Visual Basic 具有很大的灵活性,可以通过配置工作环境满足个人风格的最佳需要。可以在单个或多文档界面中间进行选择,并能调节各种集成开发环境 (IDE) 元素的尺寸和位置。所选择的布局将保留在 Visual Basic 的会话期之间。

SDI 或 MDI 界面
Visual Basic IDE 有两种不同的类型:单文档界面 (SDI) 或多文档界面 (MDI)。对 SDI 选项,所有 IDE 窗口可在屏幕上任何地方自由移动;只要 Visual Basic 是当前应用程序,它们将位于其它应用程序之上。对 MDI 选项,所有 IDE 窗口包含在一个大小可调的父窗口内。

要在SDI 和 MDI 模式间切换,请按照以下步骤执行:

从“工具”菜单中选定“选项”。
显示“选项”对话框。

选定“高级”选项卡。

选择或不选择“SDI 开发环境”复选框。
下次起动 Visual Basic 时,IDE 将以选定模式的模式启动。

- 或 -

用带 /sdi 或 /mdi 的参数的命令行运行 Visual Basic。

停放窗口
集成开发环境中的许多窗口能相互连接,或停放在屏幕边缘。包括:工具箱、窗体布局窗口、工程管理器、属性窗口、调色板、立即窗口、本地窗口和监视窗口。

对 MDI 选项,窗口可停放在父窗口的任意侧,而对于 SDI,窗口只能停放在菜单条下面。一给定窗口的“可连接的”功能,可以通过在“选项”对话框的“可连接的”选项卡上选定合适的复选框来打开或关闭,“选项”对话框可以从“工具”菜单上的“选项”命令选取。

要停放或移动窗口,请按照以下步骤执行:

选定要停放或移动的窗口。

按住鼠标左键拖动窗口到希望到达的位置。

拖动时会显示窗口轮廓。

释放鼠标按钮。

--------------------------------------------------------------------
你可以试一下带参数启动

最后的办法是重装VB
参考技术B 你如果IsMdiContainer设定成true ,那么你实现的就是MDI(多文档应用)的框架,就和以前的word一样的类型,不知道你的BUTT1 是在那个form上,一般来讲,作为MDI工程的主窗体应该是以菜单栏上的菜单和工具栏上的工具来完成消息触发的,而不是按钮,在菜单的消息响应函数中新建一个你预先定义好的form2类的对象比如说form_MDIChild,然后调用form_MDIChild.MdiParent = this;
form_MDIChild.Show();
就可以了

下面是我以前做过的一个mdi程序的“文件”菜单的“新建”菜单项的实现:
private void menuItem_New_File_Click(object sender, System.EventArgs e)
// 菜单项——“新建,文件”
Form_MDIChild formChild = new Form_MDIChild();
formChild.Text = "Document " + this.GetChildSerialNum();
formChild.New = true;
formChild.MdiParent = this;
formChild.WindowState = System.Windows.Forms.FormWindowState.Maximized;
formChild.Show();
参考技术C 下面两个函数分别解决你的两个问题:
protected override void OnPaint(PaintEventArgs e)

e.Graphics.Clear(Color.Red);
// base.OnPaint(e);必须注释掉此句


private void form3ToolStripMenuItem_Click(object sender, EventArgs e)

foreach (Form frm in this.MdiChildren)

if (frm is Form3)

frm.Show();
return;


Form3 frm3 = new Form3();
frm3.MdiParent = this;
frm3.Show();
本回答被提问者采纳
参考技术D 多窗体的解决
你可以自己定一个bool,打开过bool就为true,关了就为false
或者,你的button点过就关闭掉。等窗体关闭的时候给个事件再把这个button打开enable属性。。

WinForm排列MDI子窗体

如果一个MDI窗体中有多个子窗体同时打开,假如不对其排列顺序进行调整,那么界面会非常的混乱,而且不容易浏览。那么如何解决这个问题呢?我们可以通过使用带有MdiLayout枚举的LayoutMdi方法来排列多文档界面父窗体中的子窗体。
语法:
public void LayoutMdi (MdiLayout value)
value:是MdiLayout枚举值之一,用来定义MDI子窗体的布局。
MdiLayout枚举用于指定MDI父窗体中子窗体的布局。
语法:
public enum MdiLayout
MdiLayout枚举的枚举成员及说明如表1所示。
表1MdiLayout枚举成员

 



下面通过一个实例演示如何使用带有MdiLayout枚举的LayoutMdi方法来排列多文档界面父窗体中的子窗体。

在菜单栏上新建个菜单项,如下所示:

单击“水平平铺”菜单,使窗体中所有的子窗体水平排列,代码如下。
private void 水平平铺ToolStripMenuItem_Click(object sender, EventArgs e)
{
    LayoutMdi(MdiLayout.TileHorizontal); //使用MdiLayout枚举实现窗体的水平平铺
}

程序的运行结果如下:

单击“垂直平铺”菜单,使窗体中所有的子窗体垂直排列,代码如下。
private void 垂直平铺ToolStripMenuItem_Click(object sender, EventArgs e)
{
    LayoutMdi(MdiLayout.TileVertical); //使用MdiLayout枚举实现窗体的垂直平铺
}

程序的运行结果如下:


单击“层叠排列”菜单,使窗体中所有的子窗体层叠排列,代码如下。
private void 层叠排列ToolStripMenuItem_Click(object sender, EventArgs e)
{
    LayoutMdi(MdiLayout.Cascade); //使用MdiLayout枚举实现窗体的垂直排列
}

程序运行结果如下:

注意点:要确保你做的程序是MDI(多文档界面),在看到运行效果前你要先在MDI多文档界面下打开几个子窗口,这样才能看到效果,其次打开的子窗口通常默认情况下是以

”层叠排列“的形式打开子窗口的。这个程序并没有任何的难点。

以上是关于(窗体布局)关于子窗体问题...急!的主要内容,如果未能解决你的问题,请参考以下文章

关于子窗体关闭同时刷新父窗体的问题

WPF 子窗体 在 父窗体 中 打开,初学不懂,请指教

关于winform子窗体刷新父窗体

有关于winform的 点击主窗体的按钮隐藏子窗体?

WinForm排列MDI子窗体

带有主窗体参数的子窗体