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