Browse Source
Fixed ToggleButton.IsChecked default value.
pull/1336/head
José Pedro
8 years ago
No known key found for this signature in database
GPG Key ID: B8247B9301707B83
1 changed files with
1 additions and
0 deletions
-
src/Avalonia.Controls/Primitives/ToggleButton.cs
|
|
|
@ -14,6 +14,7 @@ namespace Avalonia.Controls.Primitives |
|
|
|
nameof(IsChecked), |
|
|
|
o => o.IsChecked, |
|
|
|
(o, v) => o.IsChecked = v, |
|
|
|
unsetValue: false, |
|
|
|
defaultBindingMode: BindingMode.TwoWay); |
|
|
|
|
|
|
|
public static readonly StyledProperty<bool> IsThreeStateProperty = |
|
|
|
|