Skip to content

Commit

Permalink
Merge pull request #1296 from pablos91/master
Browse files Browse the repository at this point in the history
fix RadioButton/BindableRadioGroup.cs
  • Loading branch information
rmarinho authored Dec 6, 2016
2 parents 1b55f3a + 6643450 commit 16d625c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public BindableRadioGroup()
/// The selected index property
/// </summary>
public static BindableProperty SelectedIndexProperty =
BindableProperty.Create<BindableRadioGroup, int>(o => o.SelectedIndex, default(int), BindingMode.TwoWay,
BindableProperty.Create<BindableRadioGroup, int>(o => o.SelectedIndex, -1, BindingMode.TwoWay,
propertyChanged: OnSelectedIndexChanged);


Expand Down

0 comments on commit 16d625c

Please sign in to comment.