소스 검색

#1798 Fix binding checkbox with three state.

MonkAlex 7 년 전
부모
커밋
c7d565fd0c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/Avalonia.Controls/Primitives/ToggleButton.cs

+ 1 - 1
src/Avalonia.Controls/Primitives/ToggleButton.cs

@@ -14,7 +14,7 @@ namespace Avalonia.Controls.Primitives
                 nameof(IsChecked),
                 o => o.IsChecked,
                 (o, v) => o.IsChecked = v,
-                unsetValue: false,
+                unsetValue: null,
                 defaultBindingMode: BindingMode.TwoWay);
 
         public static readonly StyledProperty<bool> IsThreeStateProperty =