コード例 #1
0
        private void BackButton_Click(object sender, EventArgs e)
        {
            Form ActualWindow = this;

            WindowControl.TransitInterface(ref ActualWindow, (Form) new MainInterface(ref system));
        }
コード例 #2
0
        private void GetReservationsBtn_Click(object sender, EventArgs e)
        {
            Form thisWindow = this;

            WindowControl.TransitInterface(ref thisWindow, (Form) new Interfaces.ReservationGetter(ref system));
        }
コード例 #3
0
        private void MakeReservationButton_Click(object sender, EventArgs e)
        {
            Form ActualWindow = this;

            WindowControl.TransitInterface(ref ActualWindow, (Form) new ReservationUI(ref system));
        }
コード例 #4
0
        private void ConfigButton_Click(object sender, EventArgs e)
        {
            Form thisWindow = this;

            WindowControl.TransitInterface(ref thisWindow, (Form) new Interfaces.ConfigurationUI(ref system));
        }