Browse Source

#1798 Fix binding checkbox with three state.

pull/1799/head
MonkAlex 8 years ago
parent
commit
c7d565fd0c
  1. 2
      src/Avalonia.Controls/Primitives/ToggleButton.cs

2
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 =

Loading…
Cancel
Save