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>