RowDefinition.MinHeight 属性

定义

获取或设置一个值,该值表示 RowDefinition 的允许的最低高度。

public:
 property double MinHeight { double get(); void set(double value); };
[System.ComponentModel.TypeConverter(typeof(System.Windows.LengthConverter))]
public double MinHeight { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Windows.LengthConverter))>]
member this.MinHeight : double with get, set
Public Property MinHeight As Double

属性值

Double

表示允许的最低高度的 Double。 默认值为 0。

属性

注解

在同一代码示例中使用这些值时, MinHeight 该值优先于 MaxHeight 值,而该值又优先于 Height 该值。

添加或删除行或列时, ActualWidth 所有 ColumnDefinition 元素和 ActualHeight 所有 RowDefinition 元素变为零,直到 Measure 调用为止。

XAML 属性用法

<object MinHeight="double"/>  
- or -  
<object MinHeight="qualifiedDouble"/>  

XAML 值

double
Double

值等于或大于0.0034或等于或小于160000的字符串表示形式Double。 不限定的值以设备独立像素为单位进行度量。 字符串不需要显式包含小数点。

qualifiedDouble
如上所述的 双精度 值, (除Auto) 后跟以下单位说明符之一:px、、in``cm``pt

px (默认) 是设备无关的单位 (每单元 1/96 英寸)

in 为英寸;1in==96px

cm 为厘米;1cm== (96/2.54) px

pt 为磅;1pt== (96/72) px

依赖项属性信息

标识符字段 MinHeightProperty
元数据属性设置为 true

适用于