コード例 #1
0
        private void deletePlaneBtn_Click(object sender, EventArgs e)
        {
            showAllConveyance showAllConveyanceObj = new showAllConveyance("Plane", "deleteShow");

            showAllConveyanceObj.ShowDialog();
        }
コード例 #2
0
        private void showAllPlanesBtn_Click(object sender, EventArgs e)
        {
            showAllConveyance showAllConveyanceObj = new showAllConveyance("Plane", "show");

            showAllConveyanceObj.Show();
        }
コード例 #3
0
        private void updateBusBtn_Click(object sender, EventArgs e)
        {
            showAllConveyance showAllConveyanceObj = new showAllConveyance("Bus", "updateShow");

            showAllConveyanceObj.ShowDialog();
        }
コード例 #4
0
        private void showAllTrainBtn_Click(object sender, EventArgs e)
        {
            showAllConveyance showAllConveyanceObj = new showAllConveyance("Train", "show");

            showAllConveyanceObj.Show();
        }