Currently I have a RadioButton
that is bound to a generic type... TestObject<T>
In this object, I have a property called Value which can be either 1 or 0. I have a property called MyList
which is a Dictionary<T,String>
which holds the following values:
INT String
0 "This is the first option"
1 "This is the second option"
What I am having trouble doing binding the RadioButton
to MyList
. Currently I have IsCheck ed bound to Value (with a converter to return true/false). My biggest issue is the dictionary and how to bind it to the RadioButton
control so I can see 2 RadioButton
options on the screen.
Any ideas?