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.
21 lines
1.0 KiB
21 lines
1.0 KiB
<Window x:Class="ProgressBarSample.MainWindow"
|
|
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:ProgressBarSample"
|
|
mc:Ignorable="d"
|
|
Title="MainWindow" Height="450" Width="400">
|
|
<StackPanel>
|
|
<Button x:Name="btnStart" Width="100" Height="20" Margin="10"
|
|
Content="Start"
|
|
Click="btnStart_Click"/>
|
|
|
|
<Grid Width="200" Margin="10">
|
|
<ProgressBar x:Name="pgbMain" Height="15" VerticalAlignment="Center"
|
|
Minimum="0" Maximum="100" Value="30"/>
|
|
<TextBlock VerticalAlignment="Center" HorizontalAlignment="Center"
|
|
Text="{Binding ElementName=pgbMain, Path=Value, StringFormat={}{0:N2}%}"/>
|
|
</Grid>
|
|
</StackPanel>
|
|
</Window>
|
|
|