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

Showing and hiding panels on button click c#

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

这是我的代码:

namespace Detailing
{
public partial class MainForm : Form
{
    public void hidePanels()
    {
        welcomePanel.Width = 0;
        homePanel.Width = 0;
        historyPanel.Width = 0;
        savePanel.Width = 0;
    }
    public MainForm()
    {
        InitializeComponent();
        Load += new EventHandler(MainForm_Load);
    }
    private void MainForm_Load(object sender, EventArgs e)
    {
        hidePanels();
        welcomePanel.Width = 1306;
    }

    private void homeButton_Click(object sender, EventArgs e)
    {
        hidePanels();
        homePanel.Width = 1306;
    }
}
}

P.S. 我尝试使用 welcomePanel.Hide();homePanel.Show(); 但没有成功。我也尝试使用 welcomePanel.Visible = false;homePanel.Visible = true; 但遗憾的是它也没有用。

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

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

因此,假设 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 和 show/hides TabPage

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

命名空间细节 { public 部分 class MainForm : 表单 {

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

//等等……

} }