public MenuForm2(List <Tour> tours, NavigatorForm form) { InitializeComponent(); this.tours = tours; this.previousForm = form; MaximizeBox = false; }
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; }
private void button1_Click(object sender, EventArgs e) { NavigatorForm form = new NavigatorForm(); form.Show(); }