Rev 2319 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2319 | Rev 2388 | ||
---|---|---|---|
Line 1... | Line 1... | ||
1 | <UserControl |
1 | <UserControl |
2 | xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
2 | xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
3 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
3 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
4 | x:Class="MKLiveView.GMapCustomMarkers.CustomMarkerCopter" |
4 | x:Class="MKLiveView.GMapCustomMarkers.CustomMarkerCopter" |
5 | Height="32.916" Width="112.515" Opacity="10"> |
5 | Height="55.916" Width="123.182" Opacity="10"> |
6 | <Grid> |
6 | <Grid> |
7 | <Image Name="icon" Source="CopterRed.png" HorizontalAlignment="Left" Width="56" Height="36" VerticalAlignment="Top" /> |
7 | <Image Name="icon" Source="CopterRed.png" HorizontalAlignment="Left" Width="56" Height="33" VerticalAlignment="Top" Stretch="UniformToFill" Margin="12,12,0,0" /> |
8 | <Label x:Name="lbl" Content="Label" Margin="39,0,0,-0.084" VerticalAlignment="Top" FontSize="10" Height="33" Foreground="White" HorizontalAlignment="Left" Width="73" Padding="0"> |
8 | <Label x:Name="lbl" Content="Label" Margin="50,8,0,0" VerticalAlignment="Top" FontSize="10" Height="33" Foreground="White" HorizontalAlignment="Left" Width="73" Padding="0"> |
9 | <Label.Effect> |
9 | <Label.Effect> |
10 | <DropShadowEffect Direction="45" ShadowDepth="0.5" BlurRadius="2"/> |
10 | <DropShadowEffect Direction="45" ShadowDepth="0.5" BlurRadius="2"/> |
11 | </Label.Effect> |
11 | </Label.Effect> |
12 | </Label> |
12 | </Label> |
- | 13 | <Image x:Name="heading" Height="15" VerticalAlignment="Top" HorizontalAlignment="Left" Width="10" RenderTransformOrigin="0.467,1.133" Source="CopterHeadingPink.png" Margin="24,11,0,0"> |
|
- | 14 | <Image.RenderTransform> |
|
- | 15 | <TransformGroup> |
|
- | 16 | <ScaleTransform/> |
|
- | 17 | <SkewTransform/> |
|
- | 18 | <RotateTransform x:Name="Rotate" Angle="0"/> |
|
- | 19 | <TranslateTransform/> |
|
- | 20 | </TransformGroup> |
|
- | 21 | </Image.RenderTransform> |
|
13 | 22 | </Image> |
|
14 | </Grid> |
23 | </Grid> |
15 | </UserControl> |
24 | </UserControl> |
16 | 25 |