显示和隐藏按钮上的面板单击c#

时间:2017-05-12 16:39:51

标签: c# winforms button show-hide panels

我有4个面板(彼此叠加)。我想隐藏所有面板并根据点击的按钮显示其中一个面板。当我启动应用程序并单击按钮时,它成功隐藏了所有面板,但它没有显示我想要的面板。我做错了什么?

这是我的代码:

welcomePanel.Hide();

P.S。我尝试使用homePanel.Show();welcomePanel.Visible = false;但它无效。我也尝试使用homePanel.Visible = true;和{{1}},但遗憾的是它没有用。

2 个答案:

答案 0 :(得分:2)

Panel是一个控制容器。这意味着,如果(使用设计器)将面板拖动到另一个面板的表面上,它将成为底层面板的子面。当您尝试移动底层面板时,您可以轻松地看到这一事实。所有的孩子都在一起移动。

您可以在窗体的不同位置绘制面板,只保留一个作为所有其他面板的占位符。当您加载表单或表单构造函数时,您可以通过代码移动参考面板的相同位置中的其他面板。

因此,假设welcomePanel是参考面板,您可以写:

public partial class MainForm : Form
{
    public void hidePanels()
    {
        welcomePanel.Visible = false;
        homePanel.Visible = false;
        historyPanel.Visible = false;
        savePanel.Visible = false;
    }
    public MainForm()
    {
        InitializeComponent();
        Load += new EventHandler(MainForm_Load);
        homePanel.Location = welcomePanel.Location;
        historyPanel.Location = welcomePanel.Location;
        savePanel.Location = welcomePanel.Location;        
    }
    private void MainForm_Load(object sender, EventArgs e)
    {
        hidePanels();
        welcomePanel.Visible = true;
    }

    private void homeButton_Click(object sender, EventArgs e)
    {
        hidePanels();
        homePanel.Visible = true;
    }
    ..... and so on ...

}

另一种方法是使用TabControl并根据需要显示/隐藏TabPage

答案 1 :(得分:0)

要使代码简短,只需将面板的属性直接设置为false 因此,仅将welcomePanel设置为true。 this the property of the panel just find the Visible then set it to false or true

命名空间详图 { 公共局部类MainForm:Form {

public MainForm()
{
    InitializeComponent();
    Load += new EventHandler(MainForm_Load);
}
private void homeButton_Click(object sender, EventArgs e)
{
    homePanel.Visible = true;
}

//以此类推...

} }