Windows Forms: Multiple pages on the Form using Panel control in C#

How to Create multiple pages on the Form using Panel control in C#

Step 1Click New Project, then select Visual C# on the left, then Windows and then select Windows Forms Application. Name your project "PanelExample" and then click OK

panel c#Step 2: Design your form as below

c# panel

Step 3: Add code to handle your form as below

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace PanelExample
{
    public partial class Form1 : Form
    {
        List<Panel> listPanel = new List<Panel>();
        int index;

        public Form1()
        {
            InitializeComponent();
        }

        private void btnPrevious_Click(object sender, EventArgs e)
        {
            //Bring back panel to front
            if (index > 0)
                listPanel[--index].BringToFront();
        }

        private void btnNext_Click(object sender, EventArgs e)
        {
            //Bring next panel to front
            if (index < listPanel.Count - 1)
                listPanel[++index].BringToFront();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            //Add panel to list
            listPanel.Add(panel1);
            listPanel.Add(panel2);
            listPanel.Add(panel3);
            listPanel[index].BringToFront();
        }
    }
}

VIDEO TUTORIALS