如何在DropDown Button
上获得ComboBox
的尺寸?
对于任何不确定我的意思的人,Button
通常位于ComboBox
的右侧,包含一个向下的箭头。点击后,这会展开DropDown
部分。
为了进一步说明,它是下图中红色圆圈中的按钮。
答案 0 :(得分:12)
对于此类常量,您可以使用GetSystemMetrics API函数; C#quick analogue是SystemInformation class:
using System.Windows.Forms;
...
int arrowWidth = SystemInformation.VerticalScrollBarWidth;