61 lines
2.2 KiB
XML
61 lines
2.2 KiB
XML
<Window
|
|
x:Class="BeWo.OpenOrSaveDialog"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="OpenOrSaveDialog"
|
|
Width="300"
|
|
Height="150"
|
|
AllowsTransparency="True"
|
|
Background="Transparent"
|
|
ResizeMode="NoResize"
|
|
WindowStartupLocation="CenterOwner"
|
|
WindowStyle="None">
|
|
<Grid>
|
|
<GroupBox
|
|
Header="Download"
|
|
MouseLeftButtonDown="UIElement_OnMouseLeftButtonDown"
|
|
Style="{StaticResource MainContentGroupBoxWithoutMaximizeBtnStyle}">
|
|
<Grid Background="{DynamicResource ObjectEditBackgroundBrush}">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<TextBlock
|
|
Grid.ColumnSpan="3"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Foreground="#FF202020"
|
|
Text="{Binding Question}"
|
|
TextAlignment="Center"
|
|
TextWrapping="Wrap" />
|
|
<Button
|
|
Grid.Row="1"
|
|
Grid.Column="0"
|
|
Width="85"
|
|
Margin="0,0,0,5"
|
|
Command="Open"
|
|
Content="Öffnen" />
|
|
<Button
|
|
Grid.Row="1"
|
|
Grid.Column="1"
|
|
Width="85"
|
|
Margin="0,0,0,5"
|
|
Command="Save"
|
|
Content="Speichern" />
|
|
<Button
|
|
Grid.Row="1"
|
|
Grid.Column="2"
|
|
Width="85"
|
|
Margin="0,0,0,5"
|
|
Command="Close"
|
|
Content="Abbrechen" />
|
|
</Grid>
|
|
</GroupBox>
|
|
</Grid>
|
|
</Window>
|