Exemplo n.º 1
0
        //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
        //생성 :
        //추가 :
        //목적 : 로그인 다이얼로그 띄워줌
        //설명 :
        //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
        private void DialogLogin()
        {
            CDialogLogin objLogin = new CDialogLogin();

            objLogin.StartPosition = FormStartPosition.CenterScreen;
            objLogin.ShowDialog(this);
        }
Exemplo n.º 2
0
        //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
        //생성 :
        //추가 :
        //목적 : 로고 클릭 시 로그인 다이얼로그 띄워줌
        //설명 :
        //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
        private void BtnTitleLoginInfo_Click(object sender, EventArgs e)
        {
            var pDocument = CDocument.GetDocument;
            // 버튼 로그 추가
            string strLog = string.Format("[{0}] [{1}]", "BtnTitleLoginInfo_Click", true);

            pDocument.SetUpdateButtonLog(this, strLog);

            // 현재 유저 정보 & 설비 상태를 넘겨줌
            CDialogLogin objLogin = new CDialogLogin();

            objLogin.ShowDialog();

            // 버튼 로그 추가
            strLog = string.Format("[{0}] [{1}]", "BtnTitleLoginInfo_Click", false);
            pDocument.SetUpdateButtonLog(this, strLog);
        }