-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBuildProgress.xaml
13 lines (13 loc) · 945 Bytes
/
BuildProgress.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
<Window x:Class="Presenter.BuildProgress"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Loc="clr-namespace:Presenter.Resources"
xmlns:Code="clr-namespace:Presenter.App_Code"
Title="BuildProgress" SizeToContent="WidthAndHeight" WindowStartupLocation="CenterScreen" WindowStyle="None" ShowInTaskbar="False" FontSize="{Binding Source={x:Static Code:Config.instance}, Path=FontSizeProperty}" Closing="BuildProgress_Closing">
<StackPanel Margin="10">
<ProgressBar Name="Progress" Width="300" Height="20" Minimum="0" Maximum="1" Margin="0,0,0,10" />
<StackPanel Orientation="Horizontal" FlowDirection="RightToLeft">
<Button Name="CancelButton" Click="CancelButton_Click" Content="{x:Static Loc:Labels.BuildProgressCancel}" Padding="2" MinWidth="75" />
</StackPanel>
</StackPanel>
</Window>