我正在寻找ProgressBar
无法关闭或取消的强制。我试图制作这个窗口,但它总是可以通过 ALT-F4 关闭。
我想在该过程完成后关闭窗口。
<Window x:Class="BWCRenameUtility.View.BusyProgressBar"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="BusyProgressBar" WindowStyle="None" SizeToContent="WidthAndHeight" WindowStartupLocation="CenterOwner" ResizeMode="NoResize">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Label Content="Exporting..."/>
<ProgressBar Width="300" Height="20" IsIndeterminate="True" Grid.Row="1"/>
</Grid>
</Window>