2

我是 C#.Net 的新手。我有一个表格,里面有一些面板。其中一个面板是 MainPanel。启动后,MainPanel 为空。根据用户选择,我想在其中加载一些控件。类似于 Java 中的 CardLayout 的东西!每个面板都有很多控件,我不想以编程方式添加它们。事实上,问题是“有没有办法让设计师设计一些面板并根据用户选择显示/隐藏它们,全部以一种形式?”

在此处输入图像描述

谢谢你。

4

3 回答 3

3

是的,在它们自己的类中创建名为 UserControls 的新对象。您可以通过编程方式添加和删除它们,但在设计器中创建它们。

为了避免在更改控件时出现闪烁,请执行以下操作:

Control ctlOld = frmMain.Controls[0]; // this will allow you to remove whatever control is in there, allowing you to keep your code generic.
ctlNextControl ctl = new ctlNextControl(); // this is the control you've created in another class
frmMain.Controls.Add(ctlNextControl);
frmMain.Controls.Remove(ctlOld);

创建您的用户控件,并根据需要命名它们,我现在将命名一些示例:

ctlGear
ctlMap
ctlGraph
ctlCar
ctlPerson

将这 5 个文件作为 UserControls 添加到您的项目中。随心所欲地设计它们。

为不同的按钮创建一个枚举以便于使用:

public enum ControlType {
    Gear,
    Map,
    Graph,
    Car,
    Person
}

创建它们后,在每个按钮的按钮单击事件中,添加对这个新方法的调用:

private void SwitchControls(ControlType pType) {
    // Keep a reference to whichever control is currently in MainPanel.
    Control ctlOld = MainPanel.Controls[0];
    // Create a new Control object
    Control ctlNew = null;
    // Make a switch statement to find the correct type of Control to create.
    switch (pType) {
        case (ControlType.Gear):
           ctlNew = new ctlGear();
           break;
        case (ControlType.Map):
           ctlNew = new ctlMap();
           break;
        case (ControlType.Graph):
           ctlNew = new ctlGraph();
           break;
        case (ControlType.Car):
            ctlNew = new ctlCar();
            break;
        case (ControlType.Person):
            ctlNew = new ctlPerson();
            break;
        // don't worry about a default, unless you have one you would want to be the default.
    }

    // Don't try to add a null Control.
    if (ctlNew == null) return();

    MainPanel.Controls.Add(ctlNew);

    MainPanel.Controls.Remove(ctlOld);
}

然后在你的按钮点击事件中,你可以有这样的东西:

private void btnGear.Click(object sender, EventArgs e) {
    SwitchControls(ControlType.Gear);
}

其他点击事件也是如此,只需更改参数中的 ControlType 即可。

于 2012-06-14T18:45:02.910 回答
2

只需在其他面板上设置Visible属性。但是,LarsTech 是对的,最好在需要时将用户控件交换到主面板

于 2012-06-14T18:44:09.650 回答
1

尝试将这些其他“面板”创建为用户控件。您可以像设计表格一样设计它们。

或者,您可以在他使用 TabControl 但在运行时隐藏选项卡的地方使用这个 Hans Passant 答案: Creating Wizards for Windows Forms in C#

于 2012-06-14T18:43:28.290 回答