Class RowDefinition
Holds a row definitions for a Grid.
public class RowDefinition : DefinitionBase, INotifyPropertyChanged
- Inheritance
-
RowDefinition
- Implements
- Inherited Members
Constructors
RowDefinition()
Initializes a new instance of the RowDefinition class.
public RowDefinition()
RowDefinition(GridLength)
Initializes a new instance of the RowDefinition class.
public RowDefinition(GridLength height)
Parameters
height
GridLengthThe height of the column.
RowDefinition(double, GridUnitType)
Initializes a new instance of the RowDefinition class.
public RowDefinition(double value, GridUnitType type)
Parameters
value
doubleThe height of the row.
type
GridUnitTypeThe height unit of the column.
Fields
HeightProperty
Defines the Height property.
public static readonly StyledProperty<GridLength> HeightProperty
Field Value
MaxHeightProperty
Defines the MaxHeight property.
public static readonly StyledProperty<double> MaxHeightProperty
Field Value
MinHeightProperty
Defines the MinHeight property.
public static readonly StyledProperty<double> MinHeightProperty
Field Value
Properties
ActualHeight
Gets the actual calculated height of the row.
public double ActualHeight { get; }
Property Value
Height
Gets or sets the height of the row.
public GridLength Height { get; set; }
Property Value
MaxHeight
Gets or sets the maximum height of the row in DIPs.
public double MaxHeight { get; set; }
Property Value
MinHeight
Gets or sets the minimum height of the row in DIPs.
public double MinHeight { get; set; }