在 C# 中获取组合框的选定值
在本教程中,你将学习在 C# 中获取 ComboBox 的选定文本和值的不同方法。获取 ComboBox 控件的选定值的最常用方法是使用 C# 在按钮单击事件中获取它。
C# 中的 ComboBox 控件在单个控件中提供了文本框和列表框的组合功能。显示和获取 ComboBox 选定值的两种主要方法是使用 C# 中的 Combobox.SelectedItem
和 ComboBox.GetItemText
属性。
可以使用 SelectedValue
属性检索选定项目的值。你可以在设计时使用 Forms
设计器或在运行时使用 C# 代码中的 ComboBox
类创建 ComboBox
控件。
在 C#
中使用 ComboBox.SelectedItem
属性获取 ComboBox 的选定值
在 .NET 的 ComboBox
控件中,.SelectedItem
属性显示所选值的字符串表示形式。C# 中 ComboBox 的 ComboBox.SelectedItem
属性可以获取或设置 ComboBox 中当前选中的项。
ComboBox 的选定值最初为 null
,并且仅在用户将 SelectedItem
属性设置为对象后才分配。当用户单击 ComboBox 的值时,该值将成为列表中当前选定的对象/值。
// its C# code of `Form1.cs` of `ComboboxSelectedvalue` project
using System;
using System.Windows.Forms;
namespace ComboboxSelectedvalue {
public partial class Form1 : Form {
public Form1() {
InitializeComponent();
}
// create a `comboBox1` ComboBox and `button1` button
// use the `button1` to get the selected value of the `comboBox1`
// it is a `button1` click event
private void button1_Click(object sender, EventArgs e) {
object b = comboBox1.SelectedItem;
string be = Convert.ToString(b);
MessageBox.Show("Your selected value is:" + be);
}
}
}
在 C#
中使用 ComboBox.GetItemText
获取组合框的选定值
ComboBox 的 this.comboBox1.GetItemText(value)
属性有助于将显示或选定的值检索到字符串变量。对选中的项目极为关键;但是,有时它对 ComboBox 的其他值很有用。
获取组合框选定值的 GetItemText
方法与现有 SelectedValue
属性的定义及其实现是一致的。当提供的对象不属于控件的列表时,它将返回 null
,如果它有效并且未设置 ValueMember
,它将返回值本身。
如果你不熟悉,你可以在你的 WinForms
项目中添加一个新类,添加以下代码,然后构建你的项目以准备好一个新控件,以便将其拖到窗体上。
// its C# code of `Form1.cs` of `ComboboxSelectedvalue` project
using System;
using System.Windows.Forms;
namespace ComboboxSelectedvalue {
public partial class Form1 : Form {
public Form1() {
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e) {
object b = comboBox1.SelectedItem;
object be = comboBox1.GetItemText(b);
MessageBox.Show("The value of your selected item is:" + be);
}
}
}
创建 ComboBox 类的实例,设置其属性,然后将 ComboBox
实例添加到 Form
控件以在运行时创建 ComboBox
控件。你可以在设计时或从 Visual Studio IDE 的属性窗口设置组合框的控件属性。
ComboBox.SelectedText
的值在开始时是空的,因为 SelectedText
属性只有在将焦点放在 ComboBox 上时才会获取和设置 ComboBox 中的选定文本。如果焦点移开,它的值将是一个空字符串。
在本文中,你学习了在设计时和运行时获取 C# 中 ComboBox 的选定值。之后,你发现了 Windows 窗体中 ComboBox
控件的各种属性和方法来获取选定的值。
Hassan is a Software Engineer with a well-developed set of programming skills. He uses his knowledge and writing capabilities to produce interesting-to-read technical articles.
GitHub