1
WPFデータバインド優しい列挙エラーは、私は、このリンクに従ってください「優しい」列挙型をバインドするために
Databinding an enum property to a ComboBox in WPF
が、私はこのエラーを持っている:「ステータス」列から「タイプ」を作成することができませんが
これは
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>
私は間違っていますか?
ありがとう
私はxmlns:my = "clr-namespace:WpfApplication3"とItemsSource = "{バインディングソース= {my:列挙型{x:タイプmy:ステータス}}}"ですが、エラーは同じです – user1351709
どの名前空間にあなたのタイプ 'Status'が定義されていますか? –
WpfApplication3 – user1351709