2022-01-11 19:28:49 +00:00
|
|
|
<Window x:Class="PettingZoo.WPF.ProgressWindow.ProgressWindow"
|
2021-12-31 17:48:04 +00:00
|
|
|
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"
|
2022-01-11 19:28:49 +00:00
|
|
|
xmlns:progress="clr-namespace:PettingZoo.WPF.ProgressWindow"
|
2021-12-31 17:48:04 +00:00
|
|
|
mc:Ignorable="d"
|
|
|
|
Width="400"
|
|
|
|
ResizeMode="NoResize"
|
2022-01-10 10:52:07 +00:00
|
|
|
WindowStyle="ToolWindow"
|
|
|
|
SizeToContent="Height">
|
|
|
|
<StackPanel Orientation="Vertical">
|
|
|
|
<ProgressBar Height="25" Margin="16" VerticalAlignment="Center" Name="Progress" Maximum="100" />
|
2022-01-11 19:28:49 +00:00
|
|
|
<Button HorizontalAlignment="Center" Margin="0,0,0,16" Content="{x:Static progress:ProgressStrings.ButtonCancel}" Click="CancelButton_OnClick" />
|
2022-01-10 10:52:07 +00:00
|
|
|
</StackPanel>
|
2021-12-31 17:48:04 +00:00
|
|
|
</Window>
|