Window1.xaml 1018 B

1234567891011121314151617
  1. <Window x:Class="AGV_WPF.Window1"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Title="导出数据" Height="240" Width="459" FontSize="13" ResizeMode="NoResize" WindowStyle="SingleBorderWindow" Closing="Window_Closing">
  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. <ProgressBar Height="26" HorizontalAlignment="Left" Margin="12,12,0,0" Name="progressBar1" VerticalAlignment="Top" Width="413" />
  15. <TextBox Height="130" HorizontalAlignment="Left" Margin="12,44,0,0" Name="textBox1" VerticalAlignment="Top" Width="413" Foreground="Green"/>
  16. </Grid>
  17. </Window>