initial commit
This commit is contained in:
33
Views/Dialogs/ProgressDialog.xaml
Normal file
33
Views/Dialogs/ProgressDialog.xaml
Normal file
@@ -0,0 +1,33 @@
|
||||
<Window x:Class="HC_APTBS.Views.Dialogs.ProgressDialog"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
mc:Ignorable="d"
|
||||
Title="{Binding Title}"
|
||||
Height="150" Width="450"
|
||||
WindowStyle="None" ResizeMode="NoResize"
|
||||
WindowStartupLocation="CenterOwner"
|
||||
Topmost="True">
|
||||
|
||||
<Grid>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="3*"/>
|
||||
<RowDefinition/>
|
||||
</Grid.RowDefinitions>
|
||||
|
||||
<TextBox Text="{Binding VerboseMessage, Mode=OneWay}"
|
||||
IsReadOnly="True"
|
||||
TextWrapping="Wrap"
|
||||
HorizontalContentAlignment="Center"
|
||||
VerticalContentAlignment="Center"
|
||||
FontSize="14"
|
||||
BorderThickness="0"
|
||||
Background="White"/>
|
||||
|
||||
<ProgressBar Grid.Row="1"
|
||||
Value="{Binding ProgressPercent, Mode=OneWay}"
|
||||
Minimum="0" Maximum="100"
|
||||
Height="15" Margin="30,0" VerticalAlignment="Center"/>
|
||||
</Grid>
|
||||
</Window>
|
||||
Reference in New Issue
Block a user