Пример #1
0
        public void ShowFind()
        {
            FindForm findForm = new FindForm();

            if (this.Finder == null)
            {
                this.Finder = new TextFinder(this);
            }
            if (listSearch == null)
            {
                listSearch = new List <string>();
            }

            findForm.Init(this.Finder, listSearch);

            findForm.Show(this);
        }
Пример #2
0
		public void ShowFind()
		{
			FindForm findForm = new FindForm();

			if (this.Finder == null)
				this.Finder = new TextFinder(this);
			if (listSearch == null)
				listSearch = new List<string>();

			findForm.Init(this.Finder, listSearch);

			findForm.Show(this);
		}