コード例 #1
0
ファイル: TextBoxForm.cs プロジェクト: Brinews/Code
        public static TextBoxForm InstanceObject(string txtName, string txtContent)
        {
            if (null == _instance)
                _instance = new TextBoxForm(txtName, txtContent);

            return _instance;
        }
コード例 #2
0
ファイル: TextBoxForm.cs プロジェクト: Brinews/Code
        void CallBackFunc()
        {
            if (null != AfterCheck)
            {
                tbText = this.popTextBox.Text;
                AfterCheck(this, EventArgs.Empty);
            }

            _instance = null;
        }