You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
1.3 KiB
19 lines
1.3 KiB
<Window x:Class="ConUpdate.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Height="100" Width="470" Background="{x:Null}" AllowsTransparency="True" Topmost="True" WindowStartupLocation="CenterScreen" ShowInTaskbar="False" ResizeMode="NoResize" WindowStyle="None">
|
|
<Border Background="#FFFFFF" CornerRadius="7" Padding="10">
|
|
<Grid>
|
|
<StackPanel VerticalAlignment="Center">
|
|
<ProgressBar Margin="0 10 0 0" Height="30" Width="450" HorizontalAlignment="Left" Name="pbDown" VerticalAlignment="Top" Maximum="{Binding MaxValue}" Value="{Binding Val}"/>
|
|
<Border Padding="0 10 0 0">
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBlock Width="220" Height="30" TextAlignment="Right" Name="tbMessage" Foreground="#44566C" Text="{Binding Message}" FontSize="18"></TextBlock>
|
|
<Grid Width="10"></Grid>
|
|
<TextBlock Width="220" Height="30" TextAlignment="Left" Text="{Binding Title}" Foreground="#44566C" FontSize="18"></TextBlock>
|
|
</StackPanel>
|
|
</Border>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Border>
|
|
</Window>
|
|
|