Reputation: 13
i am using Messier16.Forms.Checkbox library for Checkbox Control in Xamarin Windows App. it does not have Selected event.
Kindly suggest any library in xamarin UWP project for Checkbox control which contains Selected Event.
Thanks in Advance
Reddy Krishna
Upvotes: 0
Views: 99
Reputation: 74209
From the sample source of Messier16.Forms.Controls.Checkbox
:
checkbox.PropertyChanged += (sender, e) =>
{
if (e.PropertyName.Equals("Checked"))
{
cb2.IsEnabled = checkbox.Checked;
cb3.Checked = !checkbox.Checked;
}
};
Upvotes: 1