共用方式為


GridLength 結構

定義

用來定義格線 ColumnDefinition 和 RowDefinition 的大小 (寬度/高度)。

public value class GridLength
public readonly struct GridLength
[System.ComponentModel.TypeConverter(typeof(Microsoft.Maui.GridLength+GridLengthTypeConverter))]
public readonly struct GridLength
type GridLength = struct
[<System.ComponentModel.TypeConverter(typeof(Microsoft.Maui.GridLength+GridLengthTypeConverter))>]
type GridLength = struct
Public Structure GridLength
繼承
GridLength
屬性

備註

GridUnitType.Absolute 類型的 GridLength 代表確切的大小。 GridUnitType.Auto 類型的項目會調整,以調整網格線數據行/列中的元素大小。 GridUnitType.Star 類型的 GridLength 可用來分割比例貯體中的可用大小。

這個 valuetype 是唯讀的。

建構函式

GridLength(Double, GridUnitType)

初始化新的 GridLength。

GridLength(Double)

初始化新的絕對 GridLength。

欄位

Auto

已可重複使用 GridUnitType.Auto 的 GridLength。

Star

已可重複使用 GridUnitType.Star 的 GridLength,其值為 1。

屬性

GridUnitType

取得或設定 GridLength 的 GridUnitType

IsAbsolute

取得 GridLength 的 GridUnitType 是否為 GridUnitType.Absolute。

IsAuto

取得 GridLength 的 GridUnitType 是否為 GridUnitType.Auto。

IsStar

取得值,指出 GridLength 的 GridUnitType 是否為 GridUnitType.Star。

Value

取得 GridLength 的值。

方法

Equals(Object)

測試此 GridLength 與另一個 GridLength 是否相等。

GetHashCode()

傳回用於將此物件有效儲存至集合的值。

ToString()

傳回值和格線單位類型,以 "." 區隔。

運算子

Equality(GridLength, GridLength)

用來定義格線 ColumnDefinition 和 RowDefinition 的大小 (寬度/高度)。

Implicit(Double to GridLength)

用來定義格線 ColumnDefinition 和 RowDefinition 的大小 (寬度/高度)。

Inequality(GridLength, GridLength)

用來定義格線 ColumnDefinition 和 RowDefinition 的大小 (寬度/高度)。

適用於