Zwischenstand

This commit is contained in:
2025-04-08 10:22:22 +02:00
parent aa48d9d92d
commit de97c8de8a
48 changed files with 4726 additions and 1866 deletions

View File

@@ -1,13 +1,20 @@
<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" Height="150" Width="300"
WindowStartupLocation="CenterOwner"
WindowStyle="None"
AllowsTransparency="True"
Background="Transparent" ResizeMode="NoResize" >
<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 Style="{StaticResource MainContentGroupBoxWithoutMaximizeBtnStyle}" Header="Download" MouseLeftButtonDown="UIElement_OnMouseLeftButtonDown">
<GroupBox
Header="Download"
MouseLeftButtonDown="UIElement_OnMouseLeftButtonDown"
Style="{StaticResource MainContentGroupBoxWithoutMaximizeBtnStyle}">
<Grid Background="{DynamicResource ObjectEditBackgroundBrush}">
<Grid.RowDefinitions>
<RowDefinition Height="*" />
@@ -18,10 +25,35 @@
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<TextBlock Text="{Binding Question}" Grid.ColumnSpan="3" HorizontalAlignment="Center" VerticalAlignment="Center" TextWrapping="Wrap" TextAlignment="Center" Foreground="#FF202020"/>
<Button Margin="0,0,0,5" Grid.Row="1" Grid.Column="0" Content="Öffnen" Width="85" Command="Open" />
<Button Margin="0,0,0,5" Grid.Row="1" Grid.Column="1" Content="Speichern" Width="85" Command="Save" />
<Button Margin="0,0,0,5" Grid.Row="1" Grid.Column="2" Content="Abbrechen" Width="85" Command="Close" />
<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>