DataSeriesExportingAll.xaml 1.6 KB

123456789101112131415161718192021222324252627
  1. <Window x:Class="Aitex.UI.Charting.View.DataSeriesExportingAll"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Title="{DynamicResource GlobalLableDataSourceExport}" Height="148" Width="533" ResizeMode="NoResize" WindowStartupLocation="CenterOwner">
  5. <Window.Resources>
  6. <Style TargetType="{x:Type Label}">
  7. <Setter Property="Background" Value="White"/>
  8. <Setter Property="Foreground" Value="Black"/>
  9. </Style>
  10. </Window.Resources>
  11. <Grid>
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="86*" />
  14. <RowDefinition Height="30" />
  15. </Grid.RowDefinitions>
  16. <Grid Grid.Row="0" Background="LightYellow">
  17. <Label Content="..." Height="28" HorizontalAlignment="Left" Margin="14,6,0,0" Name="txt_Info" VerticalAlignment="Top" />
  18. <ProgressBar Height="27" HorizontalAlignment="Left" Margin="14,37,0,0" Name="progressBar1" VerticalAlignment="Top" Width="491" />
  19. </Grid>
  20. <Grid Grid.Row="1">
  21. <Button Content="{DynamicResource GlobalLableAbort}" Height="23" HorizontalAlignment="Left" Name="btnAbort" VerticalAlignment="Top" Width="75" Margin="428,4,0,0" Click="btnAbort_Click" />
  22. <Label Content="{DynamicResource GlobalLableProgress}" Height="28" HorizontalAlignment="Left" Margin="14,4,0,0" Name="label2" VerticalAlignment="Top" />
  23. <Label Content="20%" Height="28" HorizontalAlignment="Left" Margin="71,3,0,0" Name="txt_Completed" VerticalAlignment="Top" />
  24. </Grid>
  25. </Grid>
  26. </Window>