Implemented interface member:
property
ColumnSpacing
Microsoft.Maui.IGridLayout.ColumnSpacing
16 references to ColumnSpacing
Microsoft.Maui.Controls (16)
LegacyLayouts\Grid.cs (2)
32
/// <summary>Bindable property for <see cref="
ColumnSpacing
"/>.</summary>
33
public static readonly BindableProperty ColumnSpacingProperty = BindableProperty.Create(nameof(
ColumnSpacing
), typeof(double), typeof(Grid), 6d,
LegacyLayouts\GridCalc.cs (14)
33
double posx = x + c *
ColumnSpacing
;
42
w +=
ColumnSpacing
+ structure.Columns[c + i].ActualWidth;
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);
114
var columnSpacing = grid.
ColumnSpacing
;
197
double widthRequest = assignedWidth + GetUnassignedWidth(width, grid.
ColumnSpacing
);
230
double widthRequest = double.IsPositiveInfinity(width) ? double.PositiveInfinity : assignedWidth + GetUnassignedWidth(width, grid.
ColumnSpacing
);
234
actualWidth = Math.Max(actualWidth, sizeRequest.Request.Width - assignedWidth - (GetColumnSpan(child) - 1) * grid.
ColumnSpacing
);
235
minimumWidth = Math.Max(minimumWidth, sizeRequest.Minimum.Width - assignedWidth - (GetColumnSpan(child) - 1) * grid.
ColumnSpacing
);
543
double w = double.IsPositiveInfinity(width) ? double.PositiveInfinity : assignedWidth + GetUnassignedWidth(width, grid.
ColumnSpacing
);
546
double deltaWidth = requiredWidth - assignedWidth - (GetColumnSpan(child) - 1) * grid.
ColumnSpacing
;
589
double columnSpacing = grid.
ColumnSpacing
;
620
double columnSpacing = grid.
ColumnSpacing
;
676
var columnSpacing = (GetColumnSpan(child) - 1) * grid.
ColumnSpacing
;