123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- <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"
- xmlns:model="clr-namespace:GCHR.Model"
- xml:lang="de-DE"
- Title="GCHR - GlobalCube Herstellerreporting"
- WindowStyle="SingleBorderWindow" ResizeMode="CanMinimize" Loaded="WindowLoaded" SizeToContent="WidthAndHeight">
- <Window.Resources>
- <Style x:Key="TaskLabel" TargetType="{x:Type TextBlock}">
- <Setter Property="Margin" Value="5,2,0,5" />
- <Setter Property="Foreground" Value="White" />
- <Setter Property="Width" Value="290" />
- <Setter Property="HorizontalAlignment" Value="Left" />
- </Style>
- <Style x:Key="TaskHead" TargetType="{x:Type TextBlock}">
- <Setter Property="FontSize" Value="14" />
- <Setter Property="FontWeight" Value="Bold" />
- <Setter Property="Foreground" Value="White" />
- </Style>
- <DataTemplate x:Key="StatusTemplate" DataType="{x:Type model:Periode}">
- <WrapPanel>
- <TextBlock FontSize="14" FontWeight="Bold" Margin="5,2,135,2" Text="{Binding Klartext}" />
- <view:Ampel Status="Gelb" Message="{Binding Info}" />
- <TextBlock VerticalAlignment="Center" Margin="25,2,5,2" Text="{Binding Stand}"/>
- </WrapPanel>
- </DataTemplate>
- </Window.Resources>
- <Grid>
- <Grid.Background>
- <LinearGradientBrush StartPoint="0,1" EndPoint="0,0">
- <GradientStop Color="#FF9EBFDE" Offset=".5" />
- <GradientStop Color="#FF30567A" Offset="1" />
- </LinearGradientBrush>
- </Grid.Background>
- <StackPanel Opacity="1.0" Name="GridMain" Margin="10">
- <Label Foreground="White" FontSize="20" FontWeight="Bold" Name="Kopfzeile">Fehler in gchr.xml!</Label>
-
- <Label Foreground="White" FontSize="14" FontWeight="Bold">Periode auswählen</Label>
- <WrapPanel HorizontalAlignment="Center" Margin="0,0,0,10">
- <Label Foreground="White">Monat:</Label>
- <ComboBox Name="Monatsbox" Width="100" Margin="0,0,10,0" VerticalContentAlignment="Center">
- <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" VerticalContentAlignment="Center" />
- <Button Click="BtnStartenClick" Width="100" Name="BtnStarten">Prozess starten</Button>
- </WrapPanel>
- <Border CornerRadius="5" BorderThickness="1" BorderBrush="Black" Margin="0" Padding="10,5">
- <Border.Background>
- <LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
- <GradientStop Color="#FF9EBFDE" Offset="-.1" />
- <GradientStop Color="#FF30567A" Offset="1" />
- </LinearGradientBrush>
- </Border.Background>
- <StackPanel>
- <TextBlock Style="{StaticResource TaskHead}">Vorbereitungen</TextBlock>
- <WrapPanel>
- <TextBlock Style="{StaticResource TaskLabel}">Kontenrahmen laden</TextBlock>
- <view:Ampel x:Name="AmpelKontenrahmenLaden" />
- </WrapPanel>
- <WrapPanel>
- <TextBlock Style="{StaticResource TaskLabel}">Übersetzungstabelle laden</TextBlock>
- <view:Ampel x:Name="AmpelÜbersetzungstabelleLaden" />
- </WrapPanel>
- <WrapPanel>
- <TextBlock Style="{StaticResource TaskLabel}">Übersetzungstabelle für Statistikkonten laden</TextBlock>
- <view:Ampel x:Name="AmpelÜbersetzungstabelleStatLaden" />
- </WrapPanel>
- <WrapPanel>
- <TextBlock Style="{StaticResource TaskLabel}">Vormonatswerte für manuelle Konten laden</TextBlock>
- <view:Ampel x:Name="AmpelManuelleLaden" />
- </WrapPanel>
- <WrapPanel>
- <TextBlock Style="{StaticResource TaskHead}">
- Verarbeitung der Konten
- </TextBlock>
- <CheckBox Name="BtnOffline" Margin="100,0,0,0" Checked="BtnOfflineChecked"
- Unchecked="BtnOfflineChecked">
- <TextBlock FontSize="9" FontWeight="Normal" Foreground="White">Offlinemodus</TextBlock>
- </CheckBox>
- </WrapPanel>
- <WrapPanel>
- <TextBlock Style="{StaticResource TaskLabel}">Import der SuSa-Konten</TextBlock>
- <view:Ampel x:Name="AmpelSuSaKontenImport" />
- </WrapPanel>
- <TextBlock Style="{StaticResource TaskLabel}">
- <CheckBox Name="BtnKeinJahresabschluss">
- <TextBlock Foreground="White">Eröffnungsbilanz berechnen</TextBlock>
- </CheckBox>
- </TextBlock>
- <WrapPanel>
- <TextBlock Style="{StaticResource TaskLabel}">Import der Statistikkonten</TextBlock>
- <view:Ampel x:Name="AmpelStatKontenImport" />
- </WrapPanel>
- <WrapPanel>
- <TextBlock Style="{StaticResource TaskLabel}">
- <CheckBox Name="BtnImportdatenSichern" Checked="BtnImportdatenSichernChecked"
- Unchecked="BtnImportdatenSichernUnchecked">
- <TextBlock Foreground="White">Importierte Werte sichern</TextBlock>
- </CheckBox>
- </TextBlock>
- </WrapPanel>
- <WrapPanel>
- <TextBlock Style="{StaticResource TaskLabel}">Übersetzung der Konten</TextBlock>
- <view:Ampel x:Name="AmpelSuSaKontenVerarbeitung" />
- </WrapPanel>
- <WrapPanel>
- <TextBlock Style="{StaticResource TaskLabel}">Verarbeitung der manuellen Konten</TextBlock>
- <view:Ampel x:Name="AmpelManuelleKontenVerarbeitung" />
- </WrapPanel>
- <TextBlock Style="{StaticResource TaskHead}">Ergebnisse exportieren</TextBlock>
- <WrapPanel>
- <TextBlock Style="{StaticResource TaskLabel}">Dateien schreiben</TextBlock>
- <view:Ampel x:Name="AmpelExport" />
- </WrapPanel>
- <Button HorizontalAlignment="Left" Width="130" Margin="15,3" Click="BtnProtokollClick"
- Name="BtnProtokoll" Visibility="Hidden">
- Export-Verzeichnis
- </Button>
- </StackPanel>
- </Border>
- <ScrollViewer Height="80" Margin="0,10,0,0">
- <ListView Name="LvPerioden" MouseDoubleClick="LvPeriodenDoubleClick" />
- </ScrollViewer>
- </StackPanel>
- </Grid>
- </Window>
|