Border样式

分段线 BorderStyle_Segment

<Border BorderBrush="{StaticResource BorderStyle_Segment}" BorderThickness="1"/>

<DrawingBrush x:Key="BorderStyle_Segment" Viewport="0,0,8,8" ViewportUnits="Absolute" TileMode="Tile">
    <DrawingBrush.Drawing>
        <DrawingGroup>
            <GeometryDrawing Brush="Black">
                <GeometryDrawing.Geometry>
                    <GeometryGroup>
                        <RectangleGeometry Rect="0,0,50,50"/>
                        <RectangleGeometry Rect="50,50,50,50"/>
                    </GeometryGroup>
                </GeometryDrawing.Geometry>
            </GeometryDrawing>
        </DrawingGroup>
    </DrawingBrush.Drawing>
</DrawingBrush>

圆角

<Border BorderThickness="1" Background="White" CornerRadius="5">
    <Grid Margin="5">
    </Grid>
</Border>
原文地址:https://www.cnblogs.com/wesson2019-blog/p/13529004.html