用到Combox控件两个属性:
1 MaxDorpDownItems 显示条数
2 IntegralHeight 设置 为false
例如:显示最多20条,超过20条显示垂直滚动条
this.comboBox1.IntegralHeight = false;
this.comboBox1.MaxDropDownItems = 20;
时间: 2024-12-29 07:19:21
用到Combox控件两个属性:
1 MaxDorpDownItems 显示条数
2 IntegralHeight 设置 为false
例如:显示最多20条,超过20条显示垂直滚动条
this.comboBox1.IntegralHeight = false;
this.comboBox1.MaxDropDownItems = 20;