2 커밋 b392809a1d ... eed08d120d

작성자 SHA1 메시지 날짜
  lvle eed08d120d Merge branch 'dev' of http://git.kdan.cc:8865/Windows/PDFOffice_Windows_exe into dev 1 년 전
  lvle 197420d2a6 搜索-添加判空处理避免崩溃 1 년 전
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      PDF Office/ViewModels/ViewContentViewModel.cs

+ 1 - 1
PDF Office/ViewModels/ViewContentViewModel.cs

@@ -2215,7 +2215,7 @@ namespace PDF_Master.ViewModels
 
         public void SearchTextFocus(SearchContent searchContent)
         {
-            if (string.IsNullOrEmpty(searchContent.SearchText.Text) == false)
+            if (searchContent!=null&&searchContent.SearchText!=null&& string.IsNullOrEmpty(searchContent.SearchText.Text) == false)
             {
                 searchContent.SearchText.Dispatcher.BeginInvoke(new Action(() =>
                 {