Unable to find enum type for static reference in WPF
问题 I'm trying to bind an enum to a radio button in WPF (Inspired by this answer), but I have trouble finding the enum type for the converter parameter: The enum is defined in the following way namespace Application.Models { public class Enums { public enum MySelections { one, two ,three }; public MySelections CurrentSelection; ... } } I am trying to bind now the checkbox like this (The data context is assumed to be correct and the value converter implemented:) <Window x:Class="Application