Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 852 Bytes

linedflowlayout_minitemspacing.md

File metadata and controls

35 lines (23 loc) · 852 Bytes
-api-id -api-type
P:Microsoft.UI.Xaml.Controls.LinedFlowLayout.MinItemSpacing
winrt property

Microsoft.UI.Xaml.Controls.LinedFlowLayout.MinItemSpacing

-description

Gets or sets the minimum space between items on the horizontal axis.

-property-value

The minimum space (in pixels) between items on the horizontal axis. The default is 0.0.

-remarks

The spacing may exceed this minimum value when ItemsStretch is set to None and ItemsJustification is set to SpaceEvenly, SpaceAround, or SpaceBetween.

-see-also

-examples

<ItemsView ItemsSource="{x:Bind Photos}">
    <ItemsView.Layout>
        <LinedFlowLayout MinItemSpacing="6"/>
    </ItemsView.Layout>
</ItemsView>