WPF-Control/WPF控件-16-ProgressBar/MainWindow.xaml

16 lines
748 B
XML

<Window x:Class="WPF控件_16_ProgressBar.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"
mc:Ignorable="d"
Icon="public/003540AH4M72.jpg"
Title="WPF控件_16_ProgressBar" Height="450" Width="800">
<StackPanel>
<Label Content="工作中的" />
<ProgressBar Height="18" Width="200" IsIndeterminate="True" />
<Label>进度条</Label>
<ProgressBar Width="200" Height="18" Value="10" Maximum="100" Minimum="0" />
</StackPanel>
</Window>