I have dictionary which has string for key and struct for value. Struct is:
public class AtributesOfCheckBox
{
public string signalName { get; set; }
public bool checked_value { get; set; }
}
How to bind Name for checkBox with signalName from this dictionary in XAML? Thank you.