BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
private void ListView_ItemTapped(object sender, Syncfusion.ListView.XForms.ItemTappedEventArgs e)
{
var item = e.ItemData as TaskInfo;
if(item.LabelTextColor == Color.Red)
item.LabelTextColor = Color.DarkGreen;
else
item.LabelTextColor = Color.Red;
}
|