Implemented interface member:
property
RowSpacing
Microsoft.Maui.IGridLayout.RowSpacing
16 references to RowSpacing
Microsoft.Maui.Controls (16)
LegacyLayouts\Grid.cs (2)
28
/// <summary>Bindable property for <see cref="
RowSpacing
"/>.</summary>
29
public static readonly BindableProperty RowSpacingProperty = BindableProperty.Create(nameof(
RowSpacing
), typeof(double), typeof(Grid), 6d,
LegacyLayouts\GridCalc.cs (14)
36
double posy = y + r *
RowSpacing
;
45
h +=
RowSpacing
+ structure.Rows[r + i].ActualHeight;
81
var request = new Size(columnWidthSum + (structure.Columns.Count - 1) * ColumnSpacing, rowHeightSum + (structure.Rows.Count - 1) *
RowSpacing
);
82
var minimum = new Size(nonStarColumnWidthSum + (structure.Columns.Count - 1) * ColumnSpacing, nonStarRowHeightSum + (structure.Rows.Count - 1) *
RowSpacing
);
115
var rowSpacing = grid.
RowSpacing
;
198
double heightRequest = double.IsPositiveInfinity(height) ? double.PositiveInfinity : assignedHeight + GetUnassignedHeight(height, grid.
RowSpacing
);
201
actualHeight = Math.Max(actualHeight, sizeRequest.Request.Height - assignedHeight - grid.
RowSpacing
* (GetRowSpan(child) - 1));
202
minimumHeight = Math.Max(minimumHeight, sizeRequest.Minimum.Height - assignedHeight - grid.
RowSpacing
* (GetRowSpan(child) - 1));
231
double heightRequest = assignedHeight + GetUnassignedHeight(height, grid.
RowSpacing
);
568
var unassignedHeight = GetUnassignedHeight(height, grid.
RowSpacing
);
579
double deltaHeight = requiredHeight - assignedHeight - (GetRowSpan(child) - 1) * grid.
RowSpacing
;
590
double rowSpacing = grid.
RowSpacing
;
621
double rowSpacing = grid.
RowSpacing
;
737
var rowSpacing = (GetRowSpan(child) - 1) * grid.
RowSpacing
;