怎么控制ComboBox控件的输入长度
char[] values = txbNewSN.Text.ToCharArray();
for (int vindex = 0; vindex < values.Length; vindex++)
{
int value = Convert.ToInt32(values[vindex]);
string hexOutput = String.Format("{0:X}", value);
hexString += hexOutput;
}
headString = "6B0D00010A" + hexString;
txbNewSN.Text是一个ComboBox控件,我想让他只能输入10个字符,怎么实现?求救,本人以前是做底层驱动C的,现在领导突然叫我用C#写APP。。。。。。。。
------解决方案--------------------如果是TextBox的话有个MaxLength属性,MaxLength=10就行了!