Exemple #1
0
        public static TextBoxForm InstanceObject(string txtName, string txtContent)
        {
            if (null == _instance)
                _instance = new TextBoxForm(txtName, txtContent);

            return _instance;
        }
Exemple #2
0
        void CallBackFunc()
        {
            if (null != AfterCheck)
            {
                tbText = this.popTextBox.Text;
                AfterCheck(this, EventArgs.Empty);
            }

            _instance = null;
        }