如何在C#winforms中获得ComboBox的“下拉按钮”大小

时间:2014-01-10 07:06:54

标签: c# winforms combobox

如何在DropDown Button上获得ComboBox的尺寸?

对于任何不确定我的意思的人,Button通常位于ComboBox的右侧,包含一个向下的箭头。点击后,这会展开DropDown部分。

为了进一步说明,它是下图中红色圆圈中的按钮。

enter image description here

1 个答案:

答案 0 :(得分:12)

对于此类常量,您可以使用GetSystemMetrics API函数; C#quick analogue是SystemInformation class:

  using System.Windows.Forms;

  ...

  int arrowWidth = SystemInformation.VerticalScrollBarWidth;