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.
15 lines
1.0 KiB
15 lines
1.0 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="50" Width="472" Background="{x:Null}" AllowsTransparency="True" WindowStartupLocation="CenterScreen" ShowInTaskbar="False" ResizeMode="NoResize" Loaded="Window_Loaded" Closed="Window_Closed" WindowStyle="None">
|
|
|
|
<Grid>
|
|
<Border Background="#FFB4B2B2" BorderBrush="Black" BorderThickness="1">
|
|
<Canvas>
|
|
<ProgressBar Height="28" HorizontalAlignment="Left" Name="pbDown" VerticalAlignment="Top" Width="470" Maximum="{Binding MaxValue}" Value="{Binding Val}"/>
|
|
<TextBlock TextAlignment="Right" Name="tbMessage" Text="{Binding Message}" Width="145" Canvas.Top="32" Canvas.Left="325" FontSize="12"></TextBlock>
|
|
<TextBlock TextAlignment="Left" Text="{Binding Title}" FontSize="12" Canvas.Top="32" Width="300"></TextBlock>
|
|
</Canvas>
|
|
</Border>
|
|
</Grid>
|
|
</Window>
|
|
|