70 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<Window x:Class="Elwig.Dialogs.NewSeasonDialog"
 | 
						|
        AutomationProperties.AutomationId="NewSeasonDialog"
 | 
						|
        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.Dialogs"
 | 
						|
        ResizeMode="NoResize" ShowInTaskbar="False" Topmost="True"
 | 
						|
        WindowStartupLocation="CenterOwner"
 | 
						|
        DataContext="{Binding RelativeSource={RelativeSource Self}}"
 | 
						|
        Title="Saison anlegen" Height="180" Width="400">
 | 
						|
    <Window.Resources>
 | 
						|
        <Style TargetType="Label">
 | 
						|
            <Setter Property="HorizontalAlignment" Value="Left"/>
 | 
						|
            <Setter Property="VerticalAlignment" Value="Top"/>
 | 
						|
            <Setter Property="Padding" Value="2,4,2,4"/>
 | 
						|
            <Setter Property="Height" Value="25"/>
 | 
						|
        </Style>
 | 
						|
        <Style TargetType="ComboBox">
 | 
						|
            <Setter Property="HorizontalAlignment" Value="Left"/>
 | 
						|
            <Setter Property="VerticalAlignment" Value="Top"/>
 | 
						|
            <Setter Property="FontSize" Value="14"/>
 | 
						|
            <Setter Property="Height" Value="25"/>
 | 
						|
        </Style>
 | 
						|
        <Style TargetType="CheckBox">
 | 
						|
            <Setter Property="HorizontalAlignment" Value="Left"/>
 | 
						|
            <Setter Property="VerticalAlignment" Value="Top"/>
 | 
						|
        </Style>
 | 
						|
        <Style TargetType="Button">
 | 
						|
            <Setter Property="HorizontalAlignment" Value="Right"/>
 | 
						|
            <Setter Property="VerticalAlignment" Value="Bottom"/>
 | 
						|
            <Setter Property="Width" Value="100"/>
 | 
						|
            <Setter Property="Height" Value="25"/>
 | 
						|
        </Style>
 | 
						|
    </Window.Resources>
 | 
						|
    <Grid>
 | 
						|
        <Label Content="Währung:" Margin="10,10,10,10"/>
 | 
						|
        <ComboBox x:Name="CurrencyInput" Width="150" Margin="130,10,10,10"
 | 
						|
                  ItemsSource="{Binding Currencies}">
 | 
						|
            <ComboBox.ItemTemplate>
 | 
						|
                <DataTemplate>
 | 
						|
                    <StackPanel Orientation="Horizontal">
 | 
						|
                        <TextBlock Text="{Binding Code}" Width="30"/>
 | 
						|
                        <TextBlock Text="- "/>
 | 
						|
                        <TextBlock Text="{Binding Name}"/>
 | 
						|
                    </StackPanel>
 | 
						|
                </DataTemplate>
 | 
						|
            </ComboBox.ItemTemplate>
 | 
						|
        </ComboBox>
 | 
						|
 | 
						|
        <Label Content="Nachkommastellen:" Margin="10,40,10,10"/>
 | 
						|
        <ComboBox x:Name="PrecisionInput" Width="50" Margin="130,40,10,10">
 | 
						|
            <ComboBoxItem>2</ComboBoxItem>
 | 
						|
            <ComboBoxItem>3</ComboBoxItem>
 | 
						|
            <ComboBoxItem IsSelected="True">4</ComboBoxItem>
 | 
						|
            <ComboBoxItem>5</ComboBoxItem>
 | 
						|
            <ComboBoxItem>6</ComboBoxItem>
 | 
						|
            <ComboBoxItem>7</ComboBoxItem>
 | 
						|
            <ComboBoxItem>8</ComboBoxItem>
 | 
						|
        </ComboBox>
 | 
						|
 | 
						|
        <CheckBox x:Name="CopyModifiersInput" Content="Zu-/Abschläge der letzten Saison übernehmen"
 | 
						|
                  Margin="15,75,10,10" IsChecked="{Binding CopyModifiers}"/>
 | 
						|
 | 
						|
        <Button x:Name="ConfirmButton" Content="Bestätigen" Margin="10,10,115,10" Grid.Column="1" IsDefault="True"
 | 
						|
                Click="ConfirmButton_Click"/>
 | 
						|
        <Button x:Name="CancelButton" Content="Abbrechen" Margin="10,10,10,10" Grid.Column="1" IsCancel="True"/>
 | 
						|
    </Grid>
 | 
						|
</Window>
 |