18 lines
1.2 KiB
XML
18 lines
1.2 KiB
XML
<Window x:Class="Test.ProgressWindow"
|
|
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:Test"
|
|
mc:Ignorable="d"
|
|
Title="Software Center Repair" Height="232" Width="400" WindowStyle="ThreeDBorderWindow" ResizeMode="NoResize" WindowStartupLocation="CenterScreen">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="400*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Label x:Name="errorLabel" Content="" HorizontalAlignment="Center" Margin="0,130,0,0" VerticalAlignment="Top" Visibility="Hidden"/>
|
|
<ProgressBar x:Name="ProgressBar" HorizontalAlignment="Left" Height="21" Margin="30,0,0,0" VerticalAlignment="Center" Width="320" Grid.ColumnSpan="3" ValueChanged="ProgressBar_ValueChanged"/>
|
|
<Label x:Name="ProgressLabel" Content="Label" HorizontalAlignment="Left" Margin="27,55,0,0" VerticalAlignment="Top" Grid.ColumnSpan="2" Width="340" Height="29"/>
|
|
</Grid>
|
|
</Window>
|