码迷,mamicode.com
首页 > 其他好文 > 详细

comboBox 下拉宽度自适应

时间:2018-11-14 10:20:24      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:scroll   rap   source   change   each   graphics   tostring   combobox   ble   

///适用combobox绑定datatable

private void comboBox_DataSourceChanged(object sender, EventArgs e)
{
ComboBox cbb = sender as ComboBox;
string s = "";
foreach (DataRow row in (cbb.DataSource as DataTable).Rows)
{
string str = row[cbb.DisplayMember].ToString();
if (s.Length < str.Length)
{
s = str;
}
}
cbb.DropDownWidth = (int)cbb.CreateGraphics().MeasureString(s, cbb.Font).Width
+ (cbb.Items.Count > cbb.MaxDropDownItems ? SystemInformation.VerticalScrollBarWidth : 0);
}

comboBox 下拉宽度自适应

标签:scroll   rap   source   change   each   graphics   tostring   combobox   ble   

原文地址:https://www.cnblogs.com/masiteyi/p/9955980.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!