前にも言いましたが、もう一度言いますが、WPFの最も簡単な例は、Web上で見つけるのも最も難しいです:)
表示する必要のあるコンボボックスがありますが、データバインドなどの必要はありません。コンテンツは静的です。XAMLを使用して、アイテムの静的リストをコンボボックスに追加するにはどうすればよいですか?
回答:
このような:
<ComboBox Text="MyCombo">
<ComboBoxItem Name="cbi1">Item1</ComboBoxItem>
<ComboBoxItem Name="cbi2">Item2</ComboBoxItem>
<ComboBoxItem Name="cbi3">Item3</ComboBoxItem>
</ComboBox>
コードにアイテムを追加することもできます。
cboWhatever.Items.Add("SomeItem");
また、表示/値を制御する場所に何かを追加するには(私の経験ではほとんど断固として必要です)、そうすることができます。私はここで良いstackoverflowリファレンスを見つけました:
要約コードは次のようになります。
ComboBox cboSomething = new ComboBox();
cboSomething.DisplayMemberPath = "Key";
cboSomething.SelectedValuePath = "Value";
cboSomething.Items.Add(new KeyValuePair<string, string>("Something", "WhyNot"));
cboSomething.Items.Add(new KeyValuePair<string, string>("Deus", "Why"));
cboSomething.Items.Add(new KeyValuePair<string, string>("Flirptidee", "Stuff"));
cboSomething.Items.Add(new KeyValuePair<string, string>("Fernum", "Blictor"));