web-dev-qa-db-ja.com

ObjectDataProviderを介してComboBoxを汎用辞書にバインドする方法

コードビハインドでキー/値のデータをComboBoxに入力したいのですが、これは次のとおりです。

XAML:

<Window x:Class="TestCombo234.Window1"
    xmlns="http://schemas.Microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.Microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:TestCombo234"
    Title="Window1" Height="300" Width="300">
    <Window.Resources>
        <ObjectDataProvider x:Key="Choices" ObjectType="{x:Type local:CollectionData}" MethodName="GetChoices"/>
    </Window.Resources>
    <StackPanel HorizontalAlignment="Left">
        <ComboBox ItemsSource="{Binding Source={StaticResource Choices}}"/>
    </StackPanel>
</Window>

コードビハインド:

using System.Windows;
using System.Collections.Generic;

namespace TestCombo234
{
    public partial class Window1 : Window
    {
        public Window1()
        {
            InitializeComponent();
        }
    }

    public static class CollectionData
    {
        public static Dictionary<int, string> GetChoices()
        {
            Dictionary<int, string> choices = new Dictionary<int, string>();
            choices.Add(1, "monthly");
            choices.Add(2, "quarterly");
            choices.Add(3, "biannually");
            choices.Add(4, "yearly");
            return choices;
        }
    }
}

しかし、これは私にこれを与えます:

alt text http://img193.imageshack.us/img193/9218/choices.png

キーがintで値がstringになるように何を変更する必要がありますか?

46
Edward Tanguay

ComboBoxに追加します

SelectedValuePath="Key" DisplayMemberPath="Value"
111
Bryan Anderson

もっと簡単な方法があります。

列挙をGeneric.Dictionaryオブジェクトに変換します。たとえば、平日のコンボボックスが必要だったとしましょう(VBをC#に変換するだけです)

Dim colWeekdays As New Generic.Dictionary(Of FirstDayOfWeek, String)
    For intWeekday As FirstDayOfWeek = vbSunday To vbSaturday
       colWeekdays.Add(intWeekday, WeekdayName(intWeekday))
    Next

RadComboBox_Weekdays.ItemsSource = colWeekdays

XAMLでは、オブジェクトにバインドするために次を設定するだけです。

SelectedValue="{Binding Path= StartDayNumberOfWeeek}"  SelectedValuePath="Key" 
DisplayMemberPath="Value" />

上記のコードは、リフレクションを使用して列挙を簡単に一般化できます。

お役に立てれば

4
Jim

DevExpress 17.1.7がこれを処理する方法は、これらのプロパティを設定することです:DisplayMemberおよびValueMember。辞書の場合は次のようになります。

DisplayMember="Value" 
ValueMember="Key"
0
juagicre