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(() =>
                 {