You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
3.0 KiB
51 lines
3.0 KiB
<UserControl x:Class="Container.Win.NavGuide"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:local="clr-namespace:Container.Win"
|
|
mc:Ignorable="d" d:DesignWidth="1180" Background="Transparent" Height="240" Padding="80 40 0 0">
|
|
<UserControl.Resources>
|
|
<FontFamily x:Key="font">
|
|
../Resources/SourceHanSansCN-Light_0.otf#Source Han Sans CN
|
|
</FontFamily>
|
|
</UserControl.Resources>
|
|
<Grid >
|
|
|
|
<Grid.Background>
|
|
<SolidColorBrush Opacity="0.5" Color="Black"></SolidColorBrush>
|
|
</Grid.Background>
|
|
<Grid.Clip>
|
|
<RectangleGeometry x:Name="WinRect" RadiusX="30" RadiusY="30" Rect="0,0,1100,200"/>
|
|
</Grid.Clip>
|
|
<Grid Grid.ColumnSpan="2">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="200*"></ColumnDefinition>
|
|
<ColumnDefinition Width="1"></ColumnDefinition>
|
|
<ColumnDefinition Width="200*"></ColumnDefinition>
|
|
<ColumnDefinition Width="779*"></ColumnDefinition>
|
|
</Grid.ColumnDefinitions>
|
|
<Image x:Name="Img" Grid.RowSpan="2" Grid.Column="0" Source="/Container;component/image/point.png" Stretch="Fill" Width="150" Height="150" Margin="28">
|
|
<Image.RenderTransform>
|
|
<RotateTransform CenterX="72" CenterY="72" Angle="0" x:Name="ImgRotate"></RotateTransform>
|
|
</Image.RenderTransform>
|
|
</Image>
|
|
<GridSplitter Grid.Column="1" Grid.RowSpan="2" Width="1" Height="70" HorizontalAlignment="Stretch" Background="#808080"/>
|
|
<Border Grid.Column="2" Grid.RowSpan="2" Width="150" Height="150" Margin="20" Background="White">
|
|
<Border.Clip>
|
|
<RectangleGeometry RadiusX="20" RadiusY="20" Rect="0,0,150,150"/>
|
|
</Border.Clip>
|
|
<Image x:Name="ImgLogo" Source="/Container;component/image/bg.png" Stretch="Fill" >
|
|
</Image>
|
|
</Border>
|
|
<TextBlock Grid.Column="3" x:Name="TxtName" Grid.Row="0" FontSize="72" FontFamily="{StaticResource font}" HorizontalAlignment="Left" VerticalAlignment="Bottom" TextWrapping="Wrap" Text="THE NORTH FACE Urban Exploration" Foreground="White" Margin="20 0 0 -20" Width="660"></TextBlock>
|
|
<TextBlock Grid.Column="3" x:Name="TxtDistance" Grid.Row="1" FontSize="52" FontFamily="{StaticResource font}" HorizontalAlignment="Left" TextWrapping="Wrap" Text="距离您还有30米" Foreground="White" Margin="20 4" Width="660"></TextBlock>
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</UserControl>
|
|
|