| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 | <UserControl    x:Class="Aitex.Core.UI.Control.BoatView"    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"    Width="150"    Height="380"    mc:Ignorable="d">    <Grid>        <Border            Width="100"            Height="34"            Margin="24,0,24,360"            BorderBrush="Black"            BorderThickness="0,1,0,0"            CornerRadius="120" />        <Border            Width="100"            Height="225"            Margin="24,14,24,141"            BorderBrush="Black"            BorderThickness="1,0,1,1" />        <Border            Width="80"            Height="10"            Margin="34,238,34,132"            BorderBrush="Black"            BorderThickness="1" />        <Border            Width="120"            Height="5"            Margin="12,247,12,128"            BorderBrush="Black"            BorderThickness="1" />        <Border            Width="120"            Height="100"            Margin="15,251,15,29"            BorderBrush="Black"            BorderThickness="1" />        <Border            Width="90"            Height="4"            Margin="28,257,28,119"            BorderBrush="Black"            BorderThickness="1" />        <Border            Width="20"            Height="15"            Margin="62,260,68,105"            BorderBrush="Black"            BorderThickness="1" />        <Border            Margin="96,260,25,112"            BorderBrush="Black"            BorderThickness="1,0,1,1" />        <Border            Width="20"            Height="18"            Margin="124,242,6,120"            BorderBrush="Black"            BorderThickness="1,0,0,0" />        <Border            Margin="70,251,76,122"            BorderBrush="Black"            BorderThickness="1" />    </Grid></UserControl>
 |