Hi
Has any progress been made on the request?
Thank you
<StackLayout Orientation="Horizontal">
<buttons:SfCheckBox x:Name="checkBox" IsChecked="False" VerticalOptions="Start"/>
<Label Text="I agree to the terms of services for this site I agree to the terms of services for …"
LineBreakMode="WordWrap" TextColor="Black">
<Label.GestureRecognizers>
<TapGestureRecognizer NumberOfTapsRequired="1"
Tapped="TapGestureRecognizer_Tapped"/>
</Label.GestureRecognizers>
</Label>
</StackLayout> |
private void TapGestureRecognizer_Tapped(object sender, EventArgs e)
{
if (checkBox.IsChecked != null)
{
checkBox.IsChecked = !checkBox.IsChecked;
}
} |
Hi,
Thank you :)
Regards,
Balázs