WaitProcessWindow.xaml 1007 B

1234567891011121314
  1. <common:BaseWindow x:Class="PackingPress.WaitProcessWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:PackingPress"
  7. xmlns:common="clr-namespace:PackingPress.Common"
  8. mc:Ignorable="d"
  9. Title="WaitProcessWindow" Height="450" Width="800" WindowStyle="None" AllowsTransparency="True" ResizeMode="NoResize" WindowStartupLocation="CenterScreen" BorderThickness="2" BorderBrush="#6495ED">
  10. <Grid>
  11. <TextBlock x:Name="hint" TextWrapping="Wrap" Text="{common:Translater Processing}" Margin="202,112,2,253" FontSize="48" HorizontalAlignment="Center" Width="592" />
  12. <local:UCWaitingProgress x:Name="waitingProgress" Margin="0,241,0,109"></local:UCWaitingProgress>
  13. </Grid>
  14. </common:BaseWindow>