DataSourceExportingDialog.xaml 1.6 KB

1234567891011121314151617181920212223242526
  1. <Window x:Class="Aitex.UI.Charting.View.DataSourceExportingDialog"
  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="Foreground" Value="Black"/>
  8. </Style>
  9. </Window.Resources>
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="86*" />
  13. <RowDefinition Height="30" />
  14. </Grid.RowDefinitions>
  15. <Grid Grid.Row="0" Background="LightYellow">
  16. <Label Content="..." Height="28" HorizontalAlignment="Left" Margin="14,6,0,0" Name="txt_Info" VerticalAlignment="Top" />
  17. <ProgressBar Height="27" HorizontalAlignment="Left" Margin="14,37,0,0" Name="progressBar1" VerticalAlignment="Top" Width="491" />
  18. </Grid>
  19. <Grid Grid.Row="1">
  20. <Button Content="{DynamicResource GlobalLableAbort}" Height="23" HorizontalAlignment="Left" Name="btnAbort" VerticalAlignment="Top" Width="75" Margin="428,4,0,0" Click="btnAbort_Click" />
  21. <Label Content="{DynamicResource GlobalLableProgress}" Height="28" HorizontalAlignment="Left" Margin="14,4,0,0" Name="label2" VerticalAlignment="Top" />
  22. <Label Content="20%" Height="28" HorizontalAlignment="Left" Margin="71,3,0,0" Name="txt_Completed" VerticalAlignment="Top" />
  23. </Grid>
  24. </Grid>
  25. </Window>