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