46 lines
2.2 KiB
XML
46 lines
2.2 KiB
XML
<local:ContextWindow x:Class="Elwig.Windows.SeasonFinishWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
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"
|
|
xmlns:local="clr-namespace:Elwig.Windows"
|
|
xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
|
|
mc:Ignorable="d"
|
|
Loaded="Window_Loaded"
|
|
Title="Leseabschluss - Elwig" Height="450" Width="800">
|
|
<Window.Resources>
|
|
<Style TargetType="Button">
|
|
<Setter Property="VerticalAlignment" Value="Top"/>
|
|
<Setter Property="HorizontalAlignment" Value="Left"/>
|
|
<Setter Property="FontSize" Value="14"/>
|
|
<Setter Property="Padding" Value="9,3"/>
|
|
<Setter Property="Height" Value="32"/>
|
|
<Setter Property="Width" Value="200"/>
|
|
</Style>
|
|
</Window.Resources>
|
|
<Grid>
|
|
<Label Content="Saison:" Margin="50,40,0,0" VerticalAlignment="Top" HorizontalAlignment="Left" Padding="2,4,2,4" Height="25"/>
|
|
<xctk:IntegerUpDown Name="SeasonInput" Height="25" Width="56" FontSize="14" Minimum="1000" Maximum="9999"
|
|
Margin="110,40,0,0" VerticalAlignment="Top" HorizontalAlignment="Left"
|
|
ValueChanged="SeasonInput_ValueChanged"/>
|
|
|
|
<Button x:Name="CalculateBinsButton"
|
|
Click="CalculateBinsButton_Click"
|
|
Margin="50,80,0,0" FontSize="12" Height="40">
|
|
<TextBlock TextAlignment="Center">Lieferungen auf Flächen-<LineBreak/>bindungen aufteilen</TextBlock>
|
|
</Button>
|
|
|
|
<Button x:Name="DeliveryConfirmationButton" Content="Anlieferungsbestätigungen"
|
|
Click="DeliveryConfirmationButton_Click"
|
|
Margin="50,130,0,0"/>
|
|
|
|
<Button x:Name="OverUnderDeliveryButton" Content="Über-/Unterlieferungen"
|
|
Click="OverUnderDeliveryButton_Click"
|
|
Margin="50,172,0,0"/>
|
|
|
|
<Button x:Name="PaymentButton" Content="Auszahlung"
|
|
Click="PaymentButton_Click"
|
|
Margin="50,214,0,0"/>
|
|
</Grid>
|
|
</local:ContextWindow>
|