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