gpt4 book ai didi

c# - 从组合框 WPF 中获取选定的项目

转载 作者:行者123 更新时间:2023-11-30 20:33:44 25 4
gpt4 key购买 nike

如何在 C# 中从组合框中获取选定的值?

我试过这样的事情:

XAML

<ComboBox x:Name="comboBox" SelectionChanged="comboBox_SelectionChanged_1" >
<ComboBoxItem Name="Brno" IsSelected="True" Content="Brno"/>
<ComboBoxItem Name="Item2" Content="Item2"/>
<ComboBoxItem Name="Item3" Content="Item3"/>
</ComboBox>

C#

private void comboBox_SelectionChanged_1(object sender, 
System.Windows.Controls.SelectionChangedEventArgs e)

{
MessageBox.Show(comboBox.SelectedValue.ToString());

}

消息框向我显示了这个 System.Windows.Controls.ComboboxItem: Item2

我只需要显示Item2

我该怎么做?

谢谢

最佳答案

您需要从 SelectedItem 获取 ComboBoxItem 并将 Content(在您的情况下)转换为 string:

private void comboBox_SelectionChanged_1(object sender,
System.Windows.Controls.SelectionChangedEventArgs e)
{
string content = ((ComboBoxItem)comboBox.SelectedItem).Content as string;
if (content != null)
MessageBox.Show(content);
}

关于c# - 从组合框 WPF 中获取选定的项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39926155/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com