[Solved] How to assign Panels to Buttons in C# [closed]


button1.Click+=(buttonThatWasClicked, args)=> 
{
    panel1.Visible = true;
    panel2.Visible = false;
    panel3.Visible = false;
    panel4.Visible = false;
    panel5.Visible = false;
};

9

solved How to assign Panels to Buttons in C# [closed]