2021-11-09 16:48:58 +01:00
|
|
|
<localView:BeWoView x:Class="BeWo.View.Detail.InformationView" x:Name="mainWindow"
|
2021-02-25 10:46:26 +01:00
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
|
xmlns:localView="clr-namespace:BeWo.View" xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid"
|
|
|
|
|
Height="Auto" Width="Auto" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Focusable="True">
|
|
|
|
|
|
|
|
|
|
|
2021-11-09 16:48:58 +01:00
|
|
|
<Grid Background="{StaticResource ObjectEditBackgroundBrush}" x:Name="mainGrid">
|
2021-02-25 10:46:26 +01:00
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
<RowDefinition Height="auto"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
2021-03-02 13:10:21 +01:00
|
|
|
<Grid.ColumnDefinitions>
|
2021-11-09 16:48:58 +01:00
|
|
|
<ColumnDefinition Width="auto" />
|
2021-03-02 13:10:21 +01:00
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
2021-02-25 10:46:26 +01:00
|
|
|
|
2021-11-10 13:16:40 +01:00
|
|
|
<Button x:Name="button_close" Grid.Row="1" Grid.Column="0" VerticalAlignment="Bottom" HorizontalAlignment="Left" Content="Schließen" Click="button_close_Click"
|
|
|
|
|
Margin="5 0 0 5"/>
|
2021-02-25 10:46:26 +01:00
|
|
|
</Grid>
|
|
|
|
|
|
|
|
|
|
</localView:BeWoView>
|