答案 0 :(得分:4)
您可以使用Substring()
提取所需的值。
如果你想要前3个字符,你可以这样做:
string.Substring(0,3);
如果您想要更改项目的文本,选择后,您将必须使用ComboBox
的事件:
private void comboBox_SelectedIndexChanged(object sender, EventArgs e)
{
if (comboBox.SelectedIndex > -1)
{
string s = comboBox.GetItemText(this.comboBox.SelectedItem).Substring(0, 3);
this.BeginInvoke((MethodInvoker)delegate { this.comboBox1.Text = s; });
}
}