ComboBox.ItemHeight 属性

定义

获取或设置组合框中的某项的高度。

public:
 property int ItemHeight { int get(); void set(int value); };
public int ItemHeight { get; set; }
member this.ItemHeight : int with get, set
Public Property ItemHeight As Integer

属性值

组合框中某项的高度(以像素为单位)。

例外

项高度值小于零。

注解

当 属性 DrawMode 设置为 OwnerDrawFixed时,所有项的高度都相同。 当 属性 DrawMode 设置为 OwnerDrawVariable时, ItemHeight 属性指定添加到 的每个 ComboBox项的高度。 由于所有者绘制列表中的每个项可以具有不同的高度,因此可以使用 GetItemHeight 方法获取 中 ComboBox特定项的高度。 如果在 ItemHeight 具有可变高度的项的 上使用 ComboBox 属性,则此属性返回控件中第一个项的高度。

有关指定所有者绘制列表中项的高度的详细信息,请参阅 MeasureItem event。

适用于