Пример #1
0
        public void FindNext()
        {
            if (fStrategy == null)
            {
                return;
            }

            if (!fStrategy.HasResults())
            {
                AppHost.StdDialogs.ShowError(LangMan.LS(LSID.LSID_NoMatchesFound));
                return;
            }

            ISearchResult result = fStrategy.FindNext();

            if (result != null)
            {
                SelectResult(result as SearchResult);
            }
        }