12345678910111213141516 |
- <Window x:Class="AGV_WPF.ExtraUI.RemoteRouteSetWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- Title="远程路线设置" Height="244" Width="399" WindowStartupLocation="CenterScreen" ResizeMode="NoResize">
- <Grid>
- <!--背景渐变-->
- <Grid.Background>
- <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0" MappingMode="RelativeToBoundingBox">
- <GradientStop Color="White"/>
- <GradientStop Color="White" Offset="1"/>
- <GradientStop Color="#FF3D95C8"/>
- </LinearGradientBrush>
- </Grid.Background>
- <Label Content="功能正在研发中,敬请关注!" FontSize="20" FontStyle="Italic" HorizontalAlignment="Center" VerticalAlignment="Center" Foreground="Red"/>
- </Grid>
- </Window>
|