소스 검색

编辑-图片 UI、UX优化

OYXH\oyxh 1 년 전
부모
커밋
040bae45ed
1개의 변경된 파일8개의 추가작업 그리고 1개의 파일을 삭제
  1. 8 1
      PDF Office/CustomControl/CompositeControl/SlidComboControl.xaml.cs

+ 8 - 1
PDF Office/CustomControl/CompositeControl/SlidComboControl.xaml.cs

@@ -231,7 +231,14 @@ namespace PDF_Master.CustomControl.CompositeControl
                         control.combox.SelectedItems = (ComboDataItem)control.combox.SelectedItems;
 
                 }
-                control.combox.UpdateSelectedIndex();
+                if(e.NewValue is int index)
+                {
+                    if (index != -1)
+                    {
+                        control.combox.UpdateSelectedIndex();
+                    }
+                }
+                
             }
         }