Je veux remplir une ComboBox avec des données clé/valeur dans le 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;
}
}
}
Que dois-je changer pour que la clé soit l'int et la valeur la chaîne de caractères ?
0 votes
C'est ce que révèle Google : social.msdn.microsoft.com/Forums/fr-US/wpf/thread/
1 votes
Il semble que l'image dans votre question ci-dessus est cassée (et maintenant afficher une publicité à la place ). Pourriez-vous télécharger à nouveau l'image sur stack.imgur ou modifier votre question pour la supprimer ?