Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2316 | - | 1 | <UserControl x:Class="MKLiveView.GMapCustomMarkers.CustomMarkerWP" |
2 | xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||
3 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||
4 | Height="33" Width="33"> |
||
5 | <Grid Margin="0,0,10,10"> |
||
6 | <Ellipse x:Name="ellipse" Stroke="Magenta" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" StrokeThickness="2"> |
||
7 | <Ellipse.Fill> |
||
8 | <RadialGradientBrush> |
||
9 | <GradientStop Color="#FF660066" Offset="1"/> |
||
10 | <GradientStop Color="#FFFD00CF"/> |
||
11 | </RadialGradientBrush> |
||
12 | </Ellipse.Fill> |
||
13 | <Ellipse.Effect> |
||
14 | <DropShadowEffect BlurRadius="9" Direction="40" Opacity="0.79" Color="#FF342E2E"/> |
||
15 | </Ellipse.Effect> |
||
16 | </Ellipse> |
||
17 | <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"/> |
||
18 | </Grid> |
||
19 | </UserControl> |