コード例 #1
0
        private void TerritoryManagerAssignment_FormClosed(object sender, FormClosedEventArgs e)
        {
            this.Hide();
            MainUI frm = new MainUI();

            frm.Show();
        }
コード例 #2
0
ファイル: COO.cs プロジェクト: Kyoto-Engineering/KeyRegister
        private void COO_FormClosed(object sender, FormClosedEventArgs e)
        {
            this.Hide();
            MainUI frm = new MainUI();

            frm.Show();
        }
コード例 #3
0
 private void KeyAllocationEntry_FormClosed(object sender, FormClosedEventArgs e)
 {
     if (nUserType == "COO")
     {
         this.Hide();
         MainUI frm = new MainUI();
         frm.Show();
     }
     if (nUserType == "TTM")
     {
         this.Hide();
         MainUIForTTM frm = new MainUIForTTM();
         frm.Show();
     }
     if (nUserType == "LIC")
     {
         this.Hide();
         MainUIForLIC frm = new MainUIForLIC();
         frm.Show();
     }
 }
コード例 #4
0
        private void LocationManagementUI_FormClosed(object sender, FormClosedEventArgs e)
        {

            if (userTypel == "COO")
            {
                this.Hide();
                MainUI frm = new MainUI();
                frm.Show();
            }
            if (userTypel == "TTM")
            {
                this.Hide();
                MainUIForTTM frm = new MainUIForTTM();
                frm.Show();
            }
            if (userTypel == "LIC")
            {
                this.Hide();
                MainUIForLIC frm = new MainUIForLIC();
                frm.Show();
            }
        }