mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
42 lines
1.9 KiB
Plaintext
42 lines
1.9 KiB
Plaintext
|
<Window x:Class="RainmeterStudio.UI.Dialogs.CloseUnsavedDialog"
|
||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
xmlns:r="clr-namespace:RainmeterStudio.Resources"
|
||
|
Title="{x:Static r:Strings.CloseUnsavedDialog_Title}" Height="200" Width="320"
|
||
|
WindowStartupLocation="CenterOwner"
|
||
|
WindowStyle="ToolWindow" ShowInTaskbar="False"
|
||
|
Background="WhiteSmoke" >
|
||
|
<Grid>
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition Height="Auto" />
|
||
|
<RowDefinition />
|
||
|
<RowDefinition Height="Auto" />
|
||
|
<RowDefinition Height="Auto" />
|
||
|
</Grid.RowDefinitions>
|
||
|
|
||
|
<TextBlock Grid.Row="0" Text="{x:Static r:Strings.CloseUnsavedDialog_Message }"
|
||
|
Margin="4"/>
|
||
|
|
||
|
<ScrollViewer Grid.Row="1"
|
||
|
ScrollViewer.HorizontalScrollBarVisibility="Disabled"
|
||
|
ScrollViewer.VerticalScrollBarVisibility="Auto">
|
||
|
|
||
|
<TextBlock Name="textFiles"
|
||
|
Margin="4" Padding="4"
|
||
|
Background="White"/>
|
||
|
|
||
|
</ScrollViewer>
|
||
|
|
||
|
<TextBlock Grid.Row="2" Text="{x:Static r:Strings.CloseUnsavedDialog_Question }"
|
||
|
Margin="4"/>
|
||
|
|
||
|
<StackPanel Grid.Row="3" Orientation="Horizontal"
|
||
|
HorizontalAlignment="Right">
|
||
|
<Button Name="buttonSave" Content="{x:Static r:Strings.Dialog_Save}" IsDefault="True" Margin="1px" Click="buttonSave_Click" />
|
||
|
<Button Name="buttonDoNotSave" Content="{x:Static r:Strings.Dialog_DoNotSave}" Margin="1px" Click="buttonDoNotSave_Click" />
|
||
|
<Button Name="buttonCancel" Content="{x:Static r:Strings.Dialog_Cancel}" IsCancel="True" Margin="1px" Click="buttonCancel_Click" />
|
||
|
</StackPanel>
|
||
|
|
||
|
</Grid>
|
||
|
</Window>
|