コード例 #1
0
        // This is the event handler for the Facility Schedule button. When this button is clicked the Facility Schedule form is loaded.
        private void BtnFacilitySchedule_Click(object sender, RoutedEventArgs e)
        {
            frmFacilitySchedule facilitySchedule = new frmFacilitySchedule(false, _user);

            facilitySchedule.ShowDialog();
        }
コード例 #2
0
        // This event handler is fired when the view my reservations button is clicked. It displays the my reservations form.
        private void BtnViewMyReservations_Click(object sender, RoutedEventArgs e)
        {
            frmFacilitySchedule facilitySchedule = new frmFacilitySchedule(true, _user);

            facilitySchedule.ShowDialog();
        }