为了绑定一个“友好”的枚举,我点击这个链接
但我有这个错误:无法从“状态”字符串创建“类型”
这是我背后的代码
public enum Status
{
[Description("Available.")]
Available,
[Description("Not here right now.")]
Away,
[Description("I don't have time right now.")]
Busy
}
public Status CurrentStatus { get; set; }
public MainWindow()
{
InitializeComponent();
}
这是我的 XAML
<Grid>
<ComboBox
ItemsSource="{Binding Source={my:Enumeration {x:Type Status}}}"
DisplayMemberPath="Description"
SelectedValue="{Binding CurrentStatus}"
SelectedValuePath="Value" />
</Grid>
我怎么了?
谢谢