13 lines
927 B
XML
13 lines
927 B
XML
<Window xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
x:Class="LeanderShiftPlannerV2.View.ErrorView.NoInputError"
|
|
Title="NoInputError" Height="100" Width="300" CanResize="False" WindowStartupLocation="CenterOwner">
|
|
<Grid>
|
|
<TextBlock Text="You have to fill all fields with data!" Height="32" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0, 0, 0, 15"/>
|
|
<Button x:Name="ButtonAccept" Content="Accept" Height="32" Width="100" HorizontalAlignment="Center" VerticalAlignment="Bottom" HorizontalContentAlignment="Center" Margin="0, 0, 0, 10" Click="ButtonAccept_OnClick"/>
|
|
</Grid>
|
|
</Window>
|