I'm confused as to how I can accomplish this. I want to press the buttons and then the bottom panels go to the top and then open, if that makes sense.
This is essentially what I have https://i.stack.imgur.com/adLoQ.png
And I only have the basic code for button clicks
private void CP_OneFbutton_Click(object sender, EventArgs e)
{
}
Any ideas guys?
To do this you need to change Panel's Location property like this:
If you don't know exact coordinates,then you can handle Form MouseMove event (temporarily)
Move mouse to the location where you want to panel move and note coordinates, then handle button click event and change panel's location