Main.xaml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. <Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" x:Class="GCHR.Main" xmlns:View="clr-namespace:GCHR.View" xml:lang="de-DE"
  3. Title="GCHR - GlobalCube Herstellerreporting"
  4. Height="507" Width="633"
  5. WindowStyle="SingleBorderWindow" SizeToContent="Manual" ResizeMode="CanMinimize" Loaded="WindowLoaded"> <!-- Icon="pack://siteOfOrigin:,,,/img/GCHR.ico">-->
  6. <Window.Resources>
  7. <Storyboard x:Key="sbGridMainAusblenden">
  8. <DoubleAnimation From="1.0" To=".0" Duration="0:0:0.3" Storyboard.TargetName="GridMain" Storyboard.TargetProperty="Opacity" />
  9. </Storyboard>
  10. <Storyboard x:Key="sbGridMainEinblenden">
  11. <DoubleAnimation From=".0" To="1.0" Duration="0:0:0.3" Storyboard.TargetName="GridMain" Storyboard.TargetProperty="Opacity" />
  12. </Storyboard>
  13. <Storyboard x:Key="sbGridManuelleAusblenden">
  14. <DoubleAnimation From="1.0" To=".0" Duration="0:0:0.3" Storyboard.TargetName="GridManuelle" Storyboard.TargetProperty="Opacity" />
  15. </Storyboard>
  16. <Storyboard x:Key="sbGridManuelleEinblenden">
  17. <DoubleAnimation From=".0" To="1.0" Duration="0:0:0.3" Storyboard.TargetName="GridManuelle" Storyboard.TargetProperty="Opacity" />
  18. </Storyboard>
  19. <Storyboard x:Key="sbGridOverlayAusblenden">
  20. <DoubleAnimation From="1.0" To=".0" Duration="0:0:0.3" Storyboard.TargetName="GridOverlay" Storyboard.TargetProperty="Opacity" />
  21. </Storyboard>
  22. <Storyboard x:Key="sbGridOverlayEinblenden">
  23. <DoubleAnimation From=".0" To="1.0" BeginTime="0:0:0" Duration="0:0:0.3" Storyboard.TargetName="GridOverlay" Storyboard.TargetProperty="Opacity" />
  24. </Storyboard>
  25. <Style x:Key="taskLabel" TargetType="{x:Type TextBlock}">
  26. <Setter Property="FontSize" Value="12" />
  27. <Setter Property="Margin" Value="25,0,0,0" />
  28. <Setter Property="Foreground" Value="White" />
  29. <Setter Property="VerticalAlignment" Value="Center" />
  30. </Style>
  31. <Style x:Key="taskHead" TargetType="{x:Type TextBlock}">
  32. <Setter Property="FontSize" Value="14" />
  33. <Setter Property="FontWeight" Value="Bold" />
  34. <Setter Property="Margin" Value="10,0,0,0" />
  35. <Setter Property="Foreground" Value="White" />
  36. <Setter Property="VerticalAlignment" Value="Center" />
  37. </Style>
  38. </Window.Resources>
  39. <Grid>
  40. <Grid Opacity="1.0" Name="GridMain">
  41. <Grid.Background>
  42. <LinearGradientBrush StartPoint="0,1" EndPoint="0,0">
  43. <GradientStop Color="#FF9EBFDE" Offset=".5"/>
  44. <GradientStop Color="#FF30567A" Offset="1"/>
  45. </LinearGradientBrush>
  46. </Grid.Background>
  47. <Label Height="32" Margin="12,0,0,0" Foreground="White" VerticalAlignment="Top" HorizontalAlignment="Left" FontSize="14" FontWeight="Bold">
  48. Periode auswählen
  49. </Label>
  50. <WrapPanel Margin="12,30,168,2" ClipToBounds="False">
  51. <Label Foreground="White">Monat:</Label>
  52. <ComboBox Name="monatsbox" Width="100" Margin="0,0,10,0">
  53. <ComboBoxItem>Januar</ComboBoxItem>
  54. <ComboBoxItem>Februar</ComboBoxItem>
  55. <ComboBoxItem>März</ComboBoxItem>
  56. <ComboBoxItem>April</ComboBoxItem>
  57. <ComboBoxItem>Mai</ComboBoxItem>
  58. <ComboBoxItem>Juni</ComboBoxItem>
  59. <ComboBoxItem>Juli</ComboBoxItem>
  60. <ComboBoxItem>August</ComboBoxItem>
  61. <ComboBoxItem>September</ComboBoxItem>
  62. <ComboBoxItem>Oktober</ComboBoxItem>
  63. <ComboBoxItem>November</ComboBoxItem>
  64. <ComboBoxItem>Dezember</ComboBoxItem>
  65. </ComboBox>
  66. <Label Foreground="White">Jahr:</Label>
  67. <ComboBox Name="jahrbox" Width="55" Margin="0,0,15,0" />
  68. <Button Template="{DynamicResource GlassButton}" Margin="10,0,0,0" Click="BtnStartenClick" Width="131" Foreground="White" Name="btnStarten">
  69. Prozess starten
  70. </Button>
  71. </WrapPanel>
  72. <Border CornerRadius="5" BorderThickness="0.5" BorderBrush="Black" Margin="12,74,192,15.553" Padding="3,3,3,10">
  73. <Border.Effect>
  74. <DropShadowEffect Color="Black" />
  75. </Border.Effect>
  76. <Border.Background>
  77. <LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
  78. <GradientStop Color="#FF9EBFDE" Offset="-.1"/>
  79. <GradientStop Color="#FF30567A" Offset="1"/>
  80. </LinearGradientBrush>
  81. </Border.Background>
  82. <Grid Background="Transparent" Width="360">
  83. <Grid.ColumnDefinitions>
  84. <ColumnDefinition />
  85. <ColumnDefinition Width="55" />
  86. </Grid.ColumnDefinitions>
  87. <Grid.RowDefinitions>
  88. <RowDefinition />
  89. <RowDefinition />
  90. <RowDefinition />
  91. <RowDefinition />
  92. <RowDefinition />
  93. <RowDefinition />
  94. <RowDefinition />
  95. <RowDefinition />
  96. <RowDefinition />
  97. <RowDefinition />
  98. <RowDefinition />
  99. <RowDefinition />
  100. <RowDefinition />
  101. <RowDefinition />
  102. <RowDefinition />
  103. </Grid.RowDefinitions>
  104. <TextBlock Style="{StaticResource taskHead}" Grid.ColumnSpan="2">Vorbereitungen</TextBlock>
  105. <TextBlock Style="{StaticResource taskLabel}" Grid.Row="1">Kontenrahmen laden</TextBlock>
  106. <View:Ampel x:Name="ampel_KontenrahmenLaden" Grid.Row="1" Grid.Column="1" />
  107. <TextBlock Style="{StaticResource taskLabel}" Grid.Row="2">Übersetzungstabelle laden</TextBlock>
  108. <View:Ampel x:Name="ampel_ÜbersetzungstabelleLaden" Grid.Row="2" Grid.Column="1" />
  109. <TextBlock Style="{StaticResource taskLabel}" Grid.Row="3">Übersetzungstabelle für Statistikkonten laden</TextBlock>
  110. <View:Ampel x:Name="ampel_ÜbersetzungstabelleStatLaden" Grid.Row="3" Grid.Column="1" />
  111. <TextBlock Style="{StaticResource taskLabel}" Grid.Row="4" HorizontalAlignment="Left" Width="282">Vormonatswerte für manuelle Konten laden</TextBlock>
  112. <View:Ampel x:Name="ampel_ManuelleLaden" Grid.Row="4" Grid.Column="1" />
  113. <TextBlock Style="{StaticResource taskHead}" Grid.Row="5" Grid.ColumnSpan="2">
  114. Verarbeitung der Konten
  115. <CheckBox Name="btnOffline" Margin="100,0,0,0" Checked="BtnOfflineChecked" Unchecked="BtnOfflineChecked">
  116. <TextBlock FontSize="9" FontWeight="Normal" Foreground="White">Offlinemodus</TextBlock>
  117. </CheckBox>
  118. </TextBlock>
  119. <TextBlock Style="{StaticResource taskLabel}" Grid.Row="6">Import der SuSa-Konten</TextBlock>
  120. <View:Ampel x:Name="ampel_SuSaKontenImport" Grid.Row="6" Grid.Column="1" />
  121. <TextBlock Style="{StaticResource taskLabel}" Grid.Row="7">
  122. <CheckBox Name="btnKeinJahresabschluss">
  123. <TextBlock Foreground="White">Eröffnungsbilanz berechnen</TextBlock>
  124. </CheckBox>
  125. </TextBlock>
  126. <TextBlock Style="{StaticResource taskLabel}" Grid.Row="8">Import der Statistikkonten</TextBlock>
  127. <View:Ampel x:Name="ampel_StatKontenImport" Grid.Row="8" Grid.Column="1" />
  128. <TextBlock Style="{StaticResource taskLabel}" Grid.Row="9">
  129. <CheckBox Name="btnImportdatenSichern" Checked="BtnImportdatenSichernChecked" Unchecked="BtnImportdatenSichernUnchecked">
  130. <TextBlock Foreground="White">Importierte Werte sichern</TextBlock>
  131. </CheckBox>
  132. </TextBlock>
  133. <TextBlock Style="{StaticResource taskLabel}" Grid.Row="10">Übersetzung der Konten</TextBlock>
  134. <View:Ampel x:Name="ampel_SuSaKontenVerarbeitung" Grid.Row="10" Grid.Column="1"/>
  135. <TextBlock Style="{StaticResource taskLabel}" Grid.Row="11">Verarbeitung der manuellen Konten</TextBlock>
  136. <View:Ampel x:Name="ampel_ManuelleKontenVerarbeitung" Grid.Row="11" Grid.Column="1" />
  137. <TextBlock Style="{StaticResource taskHead}" Grid.Row="12" Grid.ColumnSpan="2">Ergebnisse exportieren</TextBlock>
  138. <TextBlock Style="{StaticResource taskLabel}" Grid.Row="13">Dateien schreiben</TextBlock>
  139. <View:Ampel x:Name="ampel_Export" Grid.Row="13" Grid.Column="1" />
  140. <TextBlock Style="{StaticResource taskLabel}" Grid.Row="14">
  141. <CheckBox Name="btnExportprotokoll">
  142. <TextBlock Foreground="White">Exportprotokoll schreiben</TextBlock>
  143. </CheckBox>
  144. </TextBlock>
  145. </Grid>
  146. </Border>
  147. <StackPanel Margin="0,12,12,0" HorizontalAlignment="Right" Name="stack1" Width="210" Height="149.605" VerticalAlignment="Top">
  148. <!--<Image Name="imgGlobalCube" Source="pack://siteOfOrigin:,,,/img/GlobalCube.png" />-->
  149. <!--
  150. <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>
  151. <Label Height="23" HorizontalAlignment="Right" Name="label2" FontFamily="Gill Sans Ultra Bold" VerticalAlignment="Top" Width="160" Foreground="White">Herstellerreporting</Label>
  152. <Image HorizontalAlignment="Right" Name="image1" Stretch="None" Width="50" /> -->
  153. </StackPanel>
  154. <StackPanel VerticalAlignment="Bottom" Margin="0,0,5,10" HorizontalAlignment="Right" Width="155">
  155. <Button Margin="3" Template="{DynamicResource GlassButton}" Click="BtnManuelleKontenClick" Foreground="White" Height="23" Name="btnManuelleKonten" Visibility="Hidden">Manuelle Konten</Button>
  156. <Button Margin="3" Template="{DynamicResource GlassButton}" Click="BtnProtokollClick" Foreground="White" Height="23" Name="btnProtokoll" Visibility="Hidden">Export-Verzeichnis</Button>
  157. <Button Margin="3" Template="{DynamicResource GlassButton}" Click="BtnEinstellungenClick" Foreground="White" Height="23" Name="btnEinstellungen">Einstellungen</Button>
  158. <Button Margin="3" Template="{DynamicResource GlassButton}" Click="BtnBeendenClick" Foreground="White" Height="23" Name="btnBeenden">Beenden</Button>
  159. </StackPanel>
  160. </Grid>
  161. </Grid>
  162. </Window>