コード例 #1
0
        private void memBazarHistory_Click(object sender, EventArgs e)
        {
            SeeBazarHistory bazarHistory = new SeeBazarHistory(this);

            bazarHistory.Show(this);
            this.Hide();
        }
コード例 #2
0
 private void button3_Click(object sender, EventArgs e)
 {
     if (back == true)
     {
         this.Hide();
         SeeBazarHistory sbh = new SeeBazarHistory(new Manager());
         sbh.Show();
     }
     else if (backNot == true)
     {
         this.Hide();
         Notification nf = new Notification();
         nf.Show();
     }
     else
     {
         this.Hide();
         AdminSession AS = new AdminSession();
         AS.Show();
     }
 }
コード例 #3
0
 public EditBzaar(SeeBazarHistory seeBazarHistory)
 {
     this.seeBazarHistory = seeBazarHistory;
     back = true;
     InitializeComponent();
 }