public HomeGUI(LoginGUI form, LoginCL login) : this() { this.form = form; this.login = login; loadData(); SellGUI sell = new SellGUI(login); FillPanel(sell); }
public Home() { InitializeComponent(); SellGUI sell = new SellGUI(); FillPanel(sell); Timer tmr = new Timer(); tmr.Interval = 1000; tmr.Tick += new EventHandler(tmr_Tick); tmr.Start(); }
private void pictureBox2_Click(object sender, EventArgs e) { SellGUI sell = new SellGUI(); FillPanel(sell); }