add pagebar in my form for to change page

Viewed 13

I made a simple GUI, in which I would like to add an option where I can switch pages, it is the same page when I open it, I would like a bar where I click and switch pages

namespace POS
{
    public partial class Form1 : Form
    {
        private object gunaLabel_date;

        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            Guna.UI.Lib.ScrollBar.PanelScrollHelper flowphelper ;

            gunaLabel_date = DateTime.Now.ToLongDateString();
        }

        private void gunaVScrollBar1_Scroll(object sender, ScrollEventArgs e)
        {

        }

        private void userControl17_Load(object sender, EventArgs e)
        {

        }
    }
}
0 Answers
Related