I'd like set ButtonDisabled property to false in these conditions :
At least one property with suffix _Set1 is true and at least one property with suffix _Set2 is true. When the conditions are no longer met set ButtonDisabled property to true
An idea how do this ?
public bool CheckBox1_Set1 { get; set; }
public bool CheckBox2_Set1 { get; set; }
public bool CheckBox3_Set1 { get; set; }
public bool CheckBox1_Set2 { get; set; }
public bool CheckBox2_Set2 { get; set; }
public bool CheckBox3_Set2 { get; set; }
public bool ButtonDisabled { get; set; }
