コード例 #1
0
        private void vehicleAddBtn_Click(object sender, EventArgs e)
        {
            // Goes to the Vehicle Form if the btn is clicked.
            VehicleForm myVehicleForm = new VehicleForm();

            myVehicleForm.ShowDialog();
        }
コード例 #2
0
        private void vehicleCustomerBtn_Click(object sender, EventArgs e)
        {
            // If the btn is clicked, goes to the Vehicle Form.
            VehicleForm myVehicleForm = new VehicleForm();

            myVehicleForm.ShowDialog();
        }
コード例 #3
0
        private void vehiclePartbtn_Click(object sender, EventArgs e)
        {
            // goes to vehicle form is btn is clicked.
            VehicleForm myVehicleForm = new VehicleForm();

            myVehicleForm.ShowDialog();
        }