Comment lier un ComboBox à un dictionnaire Générique via ObjectDataProvider
je veux remplir un ComboBox avec des données clé / valeur en code derrière, j'ai ceci:
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>
Code Behind:
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;
}
}
}
Mais cela me donne ceci:
texte alternatif http://img193.imageshack.us/img193/9218/choices.png
Qu'est-ce que je dois changer pour que la clé soit l'int et la valeur la chaîne?
42
demandé sur
Dave Clemmer
2009-10-22 12:45:14
2 réponses
à votre ComboBox ajouter
SelectedValuePath="Key" DisplayMemberPath="Value"
103
répondu
Bryan Anderson
2009-10-22 15:41:57
Il y a un moyen plus facile.
Convertissez l'énumération en un Générique.Objet du dictionnaire. Par exemple, disons que vous vouliez une boîte bascule avec le jour de la semaine ( convertissez simplement la VB en 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
dans votre XAML, vous n'avez qu'à définir ce qui suit pour lier un objet:
SelectedValue="{Binding Path= StartDayNumberOfWeeek}" SelectedValuePath="Key"
DisplayMemberPath="Value" />
le code ci-dessus peut facilement être généralisé en utilisant la réflexion pour gérer toutes les énumérations.
j'espère que cela aidera
4
répondu
Jim
2013-05-27 06:03:43