Canvas without Viewbox
<UserControl x:Class='SilverlightApplication3.MainPage'
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'
mc:Ignorable='d'
d:DesignWidth='640'
d:DesignHeight='480'>
<Canvas Width="18" Height="18" VerticalAlignment="Center">
<Ellipse Canvas.Left="11" Canvas.Top="1" Width="116" Height="16" Fill="Yellow" Stroke="Black" />
<Ellipse Canvas.Left="4.5" Canvas.Top="51" Width="12.5" Height="3" Fill="Black" />
<Ellipse Canvas.Left="111" Canvas.Top="51" Width="12.5" Height="3" Fill="Black" />
<Path Data="M 15,10 A 31,3 190 10 10 13,110" Stroke="Black" />
</Canvas>
</UserControl>
Related examples in the same category