ComboBox.ItemHeight 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置组合框中的某项的高度。
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。