123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- <Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" x:Class="GCHR.Main" xmlns:View="clr-namespace:GCHR.View" xml:lang="de-DE"
- Title="GCHR - GlobalCube Herstellerreporting"
- Height="507" Width="633"
- WindowStyle="SingleBorderWindow" SizeToContent="Manual" ResizeMode="CanMinimize" Loaded="WindowLoaded"> <!-- Icon="pack://siteOfOrigin:,,,/img/GCHR.ico">-->
-
- <Window.Resources>
- <Storyboard x:Key="sbGridMainAusblenden">
- <DoubleAnimation From="1.0" To=".0" Duration="0:0:0.3" Storyboard.TargetName="GridMain" Storyboard.TargetProperty="Opacity" />
- </Storyboard>
-
- <Storyboard x:Key="sbGridMainEinblenden">
- <DoubleAnimation From=".0" To="1.0" Duration="0:0:0.3" Storyboard.TargetName="GridMain" Storyboard.TargetProperty="Opacity" />
- </Storyboard>
-
- <Storyboard x:Key="sbGridManuelleAusblenden">
- <DoubleAnimation From="1.0" To=".0" Duration="0:0:0.3" Storyboard.TargetName="GridManuelle" Storyboard.TargetProperty="Opacity" />
- </Storyboard>
-
- <Storyboard x:Key="sbGridManuelleEinblenden">
- <DoubleAnimation From=".0" To="1.0" Duration="0:0:0.3" Storyboard.TargetName="GridManuelle" Storyboard.TargetProperty="Opacity" />
- </Storyboard>
- <Storyboard x:Key="sbGridOverlayAusblenden">
- <DoubleAnimation From="1.0" To=".0" Duration="0:0:0.3" Storyboard.TargetName="GridOverlay" Storyboard.TargetProperty="Opacity" />
- </Storyboard>
- <Storyboard x:Key="sbGridOverlayEinblenden">
- <DoubleAnimation From=".0" To="1.0" BeginTime="0:0:0" Duration="0:0:0.3" Storyboard.TargetName="GridOverlay" Storyboard.TargetProperty="Opacity" />
- </Storyboard>
- <Style x:Key="taskLabel" TargetType="{x:Type TextBlock}">
- <Setter Property="FontSize" Value="12" />
- <Setter Property="Margin" Value="25,0,0,0" />
- <Setter Property="Foreground" Value="White" />
- <Setter Property="VerticalAlignment" Value="Center" />
- </Style>
- <Style x:Key="taskHead" TargetType="{x:Type TextBlock}">
- <Setter Property="FontSize" Value="14" />
- <Setter Property="FontWeight" Value="Bold" />
- <Setter Property="Margin" Value="10,0,0,0" />
- <Setter Property="Foreground" Value="White" />
- <Setter Property="VerticalAlignment" Value="Center" />
- </Style>
- </Window.Resources>
-
- <Grid>
- <Grid Opacity="1.0" Name="GridMain">
- <Grid.Background>
- <LinearGradientBrush StartPoint="0,1" EndPoint="0,0">
- <GradientStop Color="#FF9EBFDE" Offset=".5"/>
- <GradientStop Color="#FF30567A" Offset="1"/>
- </LinearGradientBrush>
- </Grid.Background>
- <Label Height="32" Margin="12,0,0,0" Foreground="White" VerticalAlignment="Top" HorizontalAlignment="Left" FontSize="14" FontWeight="Bold">
- Periode auswählen
- </Label>
- <WrapPanel Margin="12,30,168,2" ClipToBounds="False">
- <Label Foreground="White">Monat:</Label>
- <ComboBox Name="monatsbox" Width="100" Margin="0,0,10,0">
- <ComboBoxItem>Januar</ComboBoxItem>
- <ComboBoxItem>Februar</ComboBoxItem>
- <ComboBoxItem>März</ComboBoxItem>
- <ComboBoxItem>April</ComboBoxItem>
- <ComboBoxItem>Mai</ComboBoxItem>
- <ComboBoxItem>Juni</ComboBoxItem>
- <ComboBoxItem>Juli</ComboBoxItem>
- <ComboBoxItem>August</ComboBoxItem>
- <ComboBoxItem>September</ComboBoxItem>
- <ComboBoxItem>Oktober</ComboBoxItem>
- <ComboBoxItem>November</ComboBoxItem>
- <ComboBoxItem>Dezember</ComboBoxItem>
- </ComboBox>
- <Label Foreground="White">Jahr:</Label>
- <ComboBox Name="jahrbox" Width="55" Margin="0,0,15,0" />
- <Button Template="{DynamicResource GlassButton}" Margin="10,0,0,0" Click="BtnStartenClick" Width="131" Foreground="White" Name="btnStarten">
- Prozess starten
- </Button>
- </WrapPanel>
- <Border CornerRadius="5" BorderThickness="0.5" BorderBrush="Black" Margin="12,74,192,15.553" Padding="3,3,3,10">
- <Border.Effect>
- <DropShadowEffect Color="Black" />
- </Border.Effect>
- <Border.Background>
- <LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
- <GradientStop Color="#FF9EBFDE" Offset="-.1"/>
- <GradientStop Color="#FF30567A" Offset="1"/>
- </LinearGradientBrush>
- </Border.Background>
- <Grid Background="Transparent" Width="360">
- <Grid.ColumnDefinitions>
- <ColumnDefinition />
- <ColumnDefinition Width="55" />
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition />
- <RowDefinition />
- <RowDefinition />
- <RowDefinition />
- <RowDefinition />
- <RowDefinition />
- <RowDefinition />
- <RowDefinition />
- <RowDefinition />
- <RowDefinition />
- <RowDefinition />
- <RowDefinition />
- <RowDefinition />
- <RowDefinition />
- <RowDefinition />
- </Grid.RowDefinitions>
- <TextBlock Style="{StaticResource taskHead}" Grid.ColumnSpan="2">Vorbereitungen</TextBlock>
- <TextBlock Style="{StaticResource taskLabel}" Grid.Row="1">Kontenrahmen laden</TextBlock>
- <View:Ampel x:Name="ampel_KontenrahmenLaden" Grid.Row="1" Grid.Column="1" />
- <TextBlock Style="{StaticResource taskLabel}" Grid.Row="2">Übersetzungstabelle laden</TextBlock>
- <View:Ampel x:Name="ampel_ÜbersetzungstabelleLaden" Grid.Row="2" Grid.Column="1" />
- <TextBlock Style="{StaticResource taskLabel}" Grid.Row="3">Übersetzungstabelle für Statistikkonten laden</TextBlock>
- <View:Ampel x:Name="ampel_ÜbersetzungstabelleStatLaden" Grid.Row="3" Grid.Column="1" />
- <TextBlock Style="{StaticResource taskLabel}" Grid.Row="4" HorizontalAlignment="Left" Width="282">Vormonatswerte für manuelle Konten laden</TextBlock>
- <View:Ampel x:Name="ampel_ManuelleLaden" Grid.Row="4" Grid.Column="1" />
- <TextBlock Style="{StaticResource taskHead}" Grid.Row="5" Grid.ColumnSpan="2">
- Verarbeitung der Konten
- <CheckBox Name="btnOffline" Margin="100,0,0,0" Checked="BtnOfflineChecked" Unchecked="BtnOfflineChecked">
- <TextBlock FontSize="9" FontWeight="Normal" Foreground="White">Offlinemodus</TextBlock>
- </CheckBox>
- </TextBlock>
- <TextBlock Style="{StaticResource taskLabel}" Grid.Row="6">Import der SuSa-Konten</TextBlock>
- <View:Ampel x:Name="ampel_SuSaKontenImport" Grid.Row="6" Grid.Column="1" />
- <TextBlock Style="{StaticResource taskLabel}" Grid.Row="7">
- <CheckBox Name="btnKeinJahresabschluss">
- <TextBlock Foreground="White">Eröffnungsbilanz berechnen</TextBlock>
- </CheckBox>
- </TextBlock>
- <TextBlock Style="{StaticResource taskLabel}" Grid.Row="8">Import der Statistikkonten</TextBlock>
- <View:Ampel x:Name="ampel_StatKontenImport" Grid.Row="8" Grid.Column="1" />
- <TextBlock Style="{StaticResource taskLabel}" Grid.Row="9">
- <CheckBox Name="btnImportdatenSichern" Checked="BtnImportdatenSichernChecked" Unchecked="BtnImportdatenSichernUnchecked">
- <TextBlock Foreground="White">Importierte Werte sichern</TextBlock>
- </CheckBox>
- </TextBlock>
- <TextBlock Style="{StaticResource taskLabel}" Grid.Row="10">Übersetzung der Konten</TextBlock>
- <View:Ampel x:Name="ampel_SuSaKontenVerarbeitung" Grid.Row="10" Grid.Column="1"/>
- <TextBlock Style="{StaticResource taskLabel}" Grid.Row="11">Verarbeitung der manuellen Konten</TextBlock>
- <View:Ampel x:Name="ampel_ManuelleKontenVerarbeitung" Grid.Row="11" Grid.Column="1" />
- <TextBlock Style="{StaticResource taskHead}" Grid.Row="12" Grid.ColumnSpan="2">Ergebnisse exportieren</TextBlock>
- <TextBlock Style="{StaticResource taskLabel}" Grid.Row="13">Dateien schreiben</TextBlock>
- <View:Ampel x:Name="ampel_Export" Grid.Row="13" Grid.Column="1" />
- <TextBlock Style="{StaticResource taskLabel}" Grid.Row="14">
- <CheckBox Name="btnExportprotokoll">
- <TextBlock Foreground="White">Exportprotokoll schreiben</TextBlock>
- </CheckBox>
- </TextBlock>
- </Grid>
- </Border>
- <StackPanel Margin="0,12,12,0" HorizontalAlignment="Right" Name="stack1" Width="210" Height="149.605" VerticalAlignment="Top">
- <!--<Image Name="imgGlobalCube" Source="pack://siteOfOrigin:,,,/img/GlobalCube.png" />-->
- <!--
- <Label Height="50" Name="label1" VerticalAlignment="Top" FontSize="35" FontWeight="Normal" FontFamily="Gill Sans Ultra Bold" HorizontalAlignment="Right" Width="72" HorizontalContentAlignment="Right" VerticalContentAlignment="Top" Foreground="White">GC</Label>
- <Label Height="23" HorizontalAlignment="Right" Name="label2" FontFamily="Gill Sans Ultra Bold" VerticalAlignment="Top" Width="160" Foreground="White">Herstellerreporting</Label>
- <Image HorizontalAlignment="Right" Name="image1" Stretch="None" Width="50" /> -->
- </StackPanel>
-
- <StackPanel VerticalAlignment="Bottom" Margin="0,0,5,10" HorizontalAlignment="Right" Width="155">
- <Button Margin="3" Template="{DynamicResource GlassButton}" Click="BtnManuelleKontenClick" Foreground="White" Height="23" Name="btnManuelleKonten" Visibility="Hidden">Manuelle Konten</Button>
- <Button Margin="3" Template="{DynamicResource GlassButton}" Click="BtnProtokollClick" Foreground="White" Height="23" Name="btnProtokoll" Visibility="Hidden">Export-Verzeichnis</Button>
- <Button Margin="3" Template="{DynamicResource GlassButton}" Click="BtnEinstellungenClick" Foreground="White" Height="23" Name="btnEinstellungen">Einstellungen</Button>
- <Button Margin="3" Template="{DynamicResource GlassButton}" Click="BtnBeendenClick" Foreground="White" Height="23" Name="btnBeenden">Beenden</Button>
- </StackPanel>
- </Grid>
-
- </Grid>
- </Window>
|