Skip to content
cs
public class UniformSpacingPanel : Panel

Attributes

PropertyDescriptionDefault ValueRemarks
OrientationHorizontal
Spacing0
ItemWidthNaN
ItemHeightNaN
ItemHorizontalAlignmentStretch
ItemVerticalAlignmentStretch
HorizontalSpacingNaN
VerticalSpacingNaN
ChildWrapping
xml
 <hc:SimpleStackPanel Margin="32">
    <hc:UniformSpacingPanel Spacing="10">
        <Button Content="This is the content"/>
        <Button Content="This is the content"/>
        <Button Content="This is the content"/>
        <Button Content="This is the content"/>
    </hc:UniformSpacingPanel>
    <hc:Divider LineStrokeDashArray="2,2"/>
    <hc:UniformSpacingPanel Spacing="10" Orientation="Vertical">
        <Button Content="This is the content"/>
        <Button Content="This is the content"/>
        <Button Content="This is the content"/>
        <Button Content="This is the content"/>
    </hc:UniformSpacingPanel>
    <hc:Divider LineStrokeDashArray="2,2"/>
    <hc:UniformSpacingPanel Spacing="10" Width="300" ChildWrapping="Wrap" HorizontalAlignment="Left">
        <Button Content="This is the content"/>
        <Button Content="This is the content"/>
        <Button Content="This is the content"/>
        <Button Content="This is the content"/>
    </hc:UniformSpacingPanel>
    <hc:Divider LineStrokeDashArray="2,2"/>
    <hc:UniformSpacingPanel Spacing="10" Orientation="Vertical" Height="70" ChildWrapping="Wrap" HorizontalAlignment="Left">
        <Button Content="This is the content"/>
        <Button Content="This is the content"/>
        <Button Content="This is the content"/>
        <Button Content="This is the content"/>
    </hc:UniformSpacingPanel>
</hc:SimpleStackPanel>

UniformSpacingPanel

Released under the MIT License.