예제 #1
0
파일: HostForm.cs 프로젝트: jdruin/F5Eagle
        ///////////////////////////////////////////////////////////////////////

        private bool SafeAppendText(
            string text,
            bool newLine
            )
        {
            return(CommonOps.AppendText(txtLog, text, newLine, true));
        }
예제 #2
0
파일: HostForm.cs 프로젝트: jdruin/F5Eagle
        ///////////////////////////////////////////////////////////////////////

        #region Public Methods
        public void SafeClose()
        {
            CheckDisposed();

            CommonOps.Invoke(this, new DelegateWithNoArgs(delegate()
            {
                Close();
            }), true);
        }
예제 #3
0
파일: HostForm.cs 프로젝트: jdruin/F5Eagle
        ///////////////////////////////////////////////////////////////////////

        public bool SafeClearLog()
        {
            CheckDisposed();

            return(CommonOps.SetText(txtLog, null, true));
        }