我有这个组合框:
A6 - "Sometext"
A79 - "Sometext"
B6789- "Sometext"
B69679 - "Sometext"
C67 - "Sometext"
D - "Sometext"
D11 - "Sometext"
我如何才能将 selectedItem 显示到 textBox 中,只有字符串 A6、A79、B6789 ......没有“Sometext”?
我在处理固定数量的字符时使用了它:
string temp = comboBox1.Text;
char[] array1 = temp.ToCharArray();
textBox1.Text = "" + array1[0] + array1[1];