「フレンドリーな」列挙型をバインドするには、このリンクをたどります
列挙型プロパティを WPF の ComboBox にデータバインドする
しかし、私はこのエラーがあります:「ステータス」文字列から「タイプ」を作成できません
これは私のコードビハインドです
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>
何が悪いの?
ありがとう