Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 2315 → Rev 2316

/MKLiveView/v1.0/Source/GMapCustomMarkers/CustomMarkerWP.xaml
0,0 → 1,19
<UserControl x:Class="MKLiveView.GMapCustomMarkers.CustomMarkerWP"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Height="33" Width="33">
<Grid Margin="0,0,10,10">
<Ellipse x:Name="ellipse" Stroke="Magenta" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" StrokeThickness="2">
<Ellipse.Fill>
<RadialGradientBrush>
<GradientStop Color="#FF660066" Offset="1"/>
<GradientStop Color="#FFFD00CF"/>
</RadialGradientBrush>
</Ellipse.Fill>
<Ellipse.Effect>
<DropShadowEffect BlurRadius="9" Direction="40" Opacity="0.79" Color="#FF342E2E"/>
</Ellipse.Effect>
</Ellipse>
<TextBox x:Name="text" HorizontalAlignment="Center" Height="18" Margin="2,5,2,7" TextWrapping="Wrap" Text="P19" VerticalAlignment="Center" Width="26" Background="{x:Null}" BorderBrush="{x:Null}" Foreground="#FFFFFEFE" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" FontSize="11"/>
</Grid>
</UserControl>