示例#1
0
        public void FindPrev()
        {
            if (fStrategy == null)
            {
                return;
            }

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

            ISearchResult result = fStrategy.FindPrev();

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