C# WinForms Panel Problem
c#, winforms
Solution
I assume that you are talking about editing the panels at design time and not run time. Just make all your panels the same size, lay them right on top of one another, and when you name them, make sure they all have the same prefix. Select the panel that shows on the top, and if it is not the one you want, use the dropdown at the top of the Properties window to select the panel that you want, then right-click on the highlighted Panel grip (moving and resizing thingys) and select 'BringToFront'.
Problem
I have an annoying problem - I want to use a listview with images as Menu. Let's say the listview contained 3 "images". - Image 1. ) "Main" - Image 2. ) "Options" - Image 3. ) "Misc" Now when I click the "Main" image, I would display the "Main" panel, same for "Options" image where I display the "Options" panel. but here's the annoying part. I have 3 panels on my form. So whenever I want to edit one panel, I have to resize the other two just so i can edit the first one, since they are all thrown on the form. It gets really annoying to edit the panels. Is there some kind of control equivalent to the wxWidgets wxListBook control? Or does anyone have an idea how to solve this? I'm asking about design time Thank you!