GridLength 构造函数

定义

初始化 GridLength 结构的新实例。

重载

GridLength(Double)

使用指定的绝对值(以像素为单位)初始化 GridLength 结构的新实例。

GridLength(Double, GridUnitType)

初始化 GridLength 结构的新实例并指定它包含何种类型的值。

GridLength(Double)

使用指定的绝对值(以像素为单位)初始化 GridLength 结构的新实例。

public:
 GridLength(double pixels);
public GridLength (double pixels);
new System.Windows.GridLength : double -> System.Windows.GridLength
Public Sub New (pixels As Double)

参数

pixels
Double

与设备无关的像素数(每英寸 96 像素)。

例外

适用于

GridLength(Double, GridUnitType)

初始化 GridLength 结构的新实例并指定它包含何种类型的值。

public:
 GridLength(double value, System::Windows::GridUnitType type);
public GridLength (double value, System.Windows.GridUnitType type);
new System.Windows.GridLength : double * System.Windows.GridUnitType -> System.Windows.GridLength
Public Sub New (value As Double, type As GridUnitType)

参数

value
Double

GridLength 实例的初始值。

type
GridUnitType

GridUnitType 实例包含 GridLength

例外

另请参阅

适用于