First of all I'm new to WPF, I'm using MVVM Light Toolkit and for about 2 days now I'm scraping the internet trying to find a easy way to create a radio button list. I found many examples that were either too complex in my opinion, either "hacks" ish to some old bug or even non working examples.
Let's say that in your code-behind you have this list of strings
List<string> options = new List<string>();
options.Add("option 1");
options.Add("option 2");
options.Add("option 3");
options.Add("option 4");
So I want to ask you, what is the simplest way to create a radio button list with options?