예제 #1
0
        public static RegexHelperFormProxy GetInstance()
        {
            if (_singleton == null)
            {
                _singleton = new RegexHelperFormProxy();
            }

            return(_singleton);
        }
예제 #2
0
        public RegexHelperForm(List <String> regexHistory)
        {
            InitializeComponent();

            _regexHistory = regexHistory;

            UpdateComboBoxList();

            // Allow client applications to modify the form.
            RegexHelperFormProxy.GetInstance().
            UpdateFormControls(Controls);
        }