コード例 #1
0
 public MenuForm2(List <Tour> tours, NavigatorForm form)
 {
     InitializeComponent();
     this.tours        = tours;
     this.previousForm = form;
     MaximizeBox       = false;
 }
コード例 #2
0
        public MenuForm(List <Tour> tours, NavigatorForm form)
        {
            InitializeComponent();
            this.tours        = tours;
            this.previousForm = form;

            contentPanel          = new AsistimeContentPanel();
            contentPanel.Location = new System.Drawing.Point(Constants.MenuWidth, 0);
            this.Controls.Add(contentPanel);

            profile = new Panel();

            MaximizeBox = false;
        }
コード例 #3
0
        private void button1_Click(object sender, EventArgs e)
        {
            NavigatorForm form = new NavigatorForm();

            form.Show();
        }