RemoteRouteSetWindow.xaml 894 B

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