単純な値を持つ単純なComboBox
があります。私は2ウェイバインディングを私のモデル上のenumプロパティで行うことを試みています。ここで WPF ComboBox 2-Wayバインディング
<ComboBox d:LayoutOverrides="Height" Grid.Column="1" SelectedItem="{Binding SortType, Converter={StaticResource sortSelect}, Mode=TwoWay}">
<ListBoxItem Content="Ascending" Tag="Ascending"/>
<ListBoxItem Content="Descending" Tag="Descending"/>
<ListBoxItem Content="Absolute Ascending" Tag="AbsoluteAscending"/>
<ListBoxItem Content="Absolute Descending" Tag="AbsoluteDescending" />
</ComboBox>
は私
ValueConverter
public class RdiSortMatchConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
var val = (RdiSort) value;
switch (val)
{
case RdiSort.Ascending:
return "Ascending";
case RdiSort.Descending:
return "Descending";
case RdiSort.AbsoluteAscending:
return "Absolute Ascending";
case RdiSort.AbsoluteDescending:
return "Absolute Descending";
default:
throw new ArgumentOutOfRangeException();
}
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
return (RdiSort) Enum.Parse(typeof (RdiSort), (string) ((ListBoxItem) value).Tag);
}
}
ConvertBack
メソッドが正常に動作している、と私のモデルはListBoxItem
でTag
値に基づいて更新されますが、私は正しいListBoxItem
を選択するために、初期Enum
値を取得カント
これを達成するための最良の方法は何ですか、またはより良いバインディング方法がありますか?Enums
Enum
値ごとにエスケープします。
は、この質問を参照してください:[WPFのコンボボックスに列挙型プロパティをデータバインディング] (http://stackoverflow.com/questions/58743/databinding-an-enum-property-to-a-combobox-in-wpf) –