2011-01-06 11 views

答えて

3

これはかなり簡単です。ここでは例が

MainWindow.xaml

<Window ...> 
    <StackPanel> 
     <ComboBox ItemsSource="{Binding MyHashTable}" 
        SelectedValuePath="Key" 
        DisplayMemberPath="Value"/> 
    </StackPanel> 
</Window> 

MainWindow.xaml.cs

public partial class MainWindow : Window 
{ 
    public Dictionary<string, string> MyHashTable 
    { 
     get; 
     set; 
    } 
    public MainWindow() 
    { 
     InitializeComponent(); 
     MyHashTable = new Dictionary<string, string>(); 
     MyHashTable.Add("Key 1", "Value 1"); 
     MyHashTable.Add("Key 2", "Value 2"); 
     MyHashTable.Add("Key 3", "Value 3"); 
     MyHashTable.Add("Key 4", "Value 4"); 
     this.DataContext = this; 
    } 
} 
+0

おかげMeleakだ、私はそれをしようとします。 –