I have a following ListView item template, in which I am trying to bind integer value to Checked
property of CheckBox.
IsUploaded
value con
If you're willing to change the class, add a property on the class that's a boolean
public bool IsUploadedBoolean
{
get { return IsUploaded != 0; }
set { IsUploaded = value ? 1 : 0; }
}
If not, you may have success with a TypeConverter: