mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-24 06:05:35 +08:00
27 lines
2.1 KiB
XML
27 lines
2.1 KiB
XML
<w:ModalWindow x:Class="GARbro.GUI.FileExistsDialog"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:w="clr-namespace:Rnd.Windows"
|
|
xmlns:s="clr-namespace:GARbro.GUI.Strings"
|
|
Title="File already exists" ShowInTaskbar="False" WindowStartupLocation="CenterOwner"
|
|
ResizeMode="NoResize" SizeToContent="WidthAndHeight" ShowActivated="True"
|
|
FocusManager.FocusedElement="{Binding ElementName=FirstButton}"
|
|
Background="{DynamicResource {x:Static SystemColors.ControlBrushKey}}">
|
|
<StackPanel Orientation="Horizontal">
|
|
<Image Source="Images/64x64/actions.png" Width="64" Height="64" Margin="10"
|
|
SnapsToDevicePixels="True" VerticalAlignment="Top" RenderOptions.BitmapScalingMode="HighQuality"/>
|
|
<StackPanel Orientation="Vertical">
|
|
<TextBlock x:Name="Notice" Text="File named {0} already exists in destination folder." Margin="0,10,10,10"/>
|
|
<TextBlock Text="{x:Static s:guiStrings.LabelDuplicateFileQuestion}" Margin="0,0,10,10"/>
|
|
<Separator/>
|
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" VerticalAlignment="Center">
|
|
<Button Content="{x:Static s:guiStrings.ButtonSkip}" Margin="0,10,10,10" MinWidth="75" Height="25" IsDefault="True" Click="SkipButton_Click" x:Name="FirstButton"/>
|
|
<Button Content="{x:Static s:guiStrings.ButtonOverwrite}" Margin="10" MinWidth="75" Height="25" Click="OverwriteButton_Click"/>
|
|
<Button Content="{x:Static s:guiStrings.ButtonRename}" Margin="10" MinWidth="75" Height="25" Click="RenameButton_Click"/>
|
|
<Button Content="{x:Static s:guiStrings.ButtonAbort}" Margin="10" MinWidth="75" Height="25" IsCancel="True" Click="AbortButton_Click"/>
|
|
</StackPanel>
|
|
<CheckBox x:Name="ApplyToAll" Content="{x:Static s:guiStrings.LabelApplyToAll}" Margin="0,10,10,10"/>
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</w:ModalWindow>
|