Table of Contents

Enum SpacingMode

Namespace
Wpf.Ui.Controls
Assembly
Wpf.Ui.dll

Specifies how remaining space is distributed.

Based on https://github.com/sbaeumlisberger/VirtualizingWrapPanel.

public enum SpacingMode

Fields

BetweenItemsOnly = 2

The remaining space is evenly distributed between the items on a layout row, excluding the start and end of each row.

None = 0

Spacing is disabled and all items will be arranged as closely as possible.

StartAndEndOnly = 3

The remaining space is evenly distributed between start and end of each row.

Uniform = 1

The remaining space is evenly distributed between the items on a layout row, as well as the start and end of each row.