Hintergruende pflege

This commit is contained in:
Tikkinger 2025-06-16 22:01:13 +02:00
parent 52e84eef60
commit 11383fc75a
57 changed files with 45 additions and 74 deletions

View File

@ -13,10 +13,10 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("AquaCare.Controller")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+ea362ca3e776b0f0ddd532781e368f6a9a8d1857")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+52e84eef603a5d794883bebebdb43f1496ad8c8b")]
[assembly: System.Reflection.AssemblyProductAttribute("AquaCare.Controller")]
[assembly: System.Reflection.AssemblyTitleAttribute("AquaCare.Controller")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.
// Generated by the MSBuild WriteCodeFragment class.

View File

@ -1 +1 @@
820caf03bc24f4f7b4286c530f03701c7248bfbd62793c2cda10edcca9adeb02
e7b322b31da6702bd8fe7d53b83645020505c1ad7318739a0b5cdd9dfc0dde15

View File

@ -13,10 +13,10 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("AquaCare.Model")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+ea362ca3e776b0f0ddd532781e368f6a9a8d1857")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+52e84eef603a5d794883bebebdb43f1496ad8c8b")]
[assembly: System.Reflection.AssemblyProductAttribute("AquaCare.Model")]
[assembly: System.Reflection.AssemblyTitleAttribute("AquaCare.Model")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.
// Generated by the MSBuild WriteCodeFragment class.

View File

@ -1 +1 @@
085892f4350a33ad23a6e03569bc6c6028d2c316aed3f39b56f71976d8407b90
1396b3ce6da72bd679b29887d28ac5d332cff2eb0de90d2707d5bce268e6c80d

View File

@ -13,10 +13,10 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("AquaCare.Persistence")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+ea362ca3e776b0f0ddd532781e368f6a9a8d1857")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+52e84eef603a5d794883bebebdb43f1496ad8c8b")]
[assembly: System.Reflection.AssemblyProductAttribute("AquaCare.Persistence")]
[assembly: System.Reflection.AssemblyTitleAttribute("AquaCare.Persistence")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.
// Generated by the MSBuild WriteCodeFragment class.

View File

@ -1 +1 @@
f69529c0fda3f5d841fe6bd5d1a521078cd01fc4e145f63b80f5f469286dc30a
e56b7dd48342043456665ffc9aa4f0072231f58ee5b6bcd43379b228c6c7a7c8

View File

@ -1,11 +1,17 @@
<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:d="http://schemas.microsoft.com/express/blend/2008"
x:Class="AquaCare.View.PflegeWindow"
xmlns:mc ="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title="Pflege Werte eintragen"
Width="550" Height="480">
Width="600" Height="500">
<Grid>
<!-- Hintergrundbild ins äußere Grid verschieben -->
<Grid.Background>
<ImageBrush Source="avares://AquaCare.View/Ressourcen/Bilder/PflegeHintergrund.png"
Stretch="Fill"/>
</Grid.Background>
<Grid RowDefinitions="Auto,Auto,Auto,Auto,Auto,Auto,Auto,Auto,Auto"
ColumnDefinitions="Auto,*"
Margin="20"

Binary file not shown.

After

Width:  |  Height:  |  Size: 420 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

View File

@ -4,36 +4,42 @@
<!-- Allgemeiner Button-Style -->
<Style Selector="Button">
<Setter Property="FontSize" Value="30"/>
<Setter Property="Background" Value="Transparent"/>
<Setter Property="Background" Value="#808080"/>
<Setter Property="Foreground" Value="#BEBEBE"/>
<Setter Property="FontWeight" Value="Bold"/>
<Setter Property="HorizontalContentAlignment" Value="Center"/>
<Setter Property="VerticalContentAlignment" Value="Center"/>
<Setter Property="Margin" Value="5"/>
</Style>
<!-- Image Button-Style -->
<Style Selector="Button.ImageButton">
<Setter Property="Background" Value="Transparent"/>
<Setter Property="BorderThickness" Value="0"/>
<Setter Property="Padding" Value="0"/>
</Style>
<!-- Überschrift-TextBlock-Style -->
<Style Selector="TextBlock.ÜberschriftText">
<Setter Property="FontSize" Value="50"/>
<Setter Property="FontSize" Value="48"/>
<Setter Property="FontWeight" Value="Bold"/>
<Setter Property="Foreground" Value="#BEBEBE"/>
<Setter Property="TextDecorations" Value="Underline"/>
<Setter Property="Foreground" Value="White"/>
<Setter Property="HorizontalAlignment" Value="Center"/>
<Setter Property="VerticalAlignment" Value="Center"/>
<Setter Property="Margin" Value="0,20,0,20"/>
</Style>
<!-- Allgemeiner TextBlock-Style (Buttons usw.) -->
<Style Selector="TextBlock">
<Setter Property="FontSize" Value="20"/>
<Setter Property="FontWeight" Value="Bold"/>
<Setter Property="Foreground" Value="#BEBEBE"/>
<Setter Property="FontSize" Value="24"/>
<Setter Property="Foreground" Value="White"/>
<Setter Property="HorizontalAlignment" Value="Center"/>
<Setter Property="VerticalAlignment" Value="Center"/>
</Style>
<!--Default Hintergrundfarbe-->
<Style Selector="Window">
<Setter Property="Background" Value="#1C1C1C"/>
<Setter Property="Background" Value="#1E1E1E"/>
</Style>
</Style>

View File

@ -1,47 +0,0 @@
<Style xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<!-- Allgemeiner Button-Style -->
<Style Selector="Button">
<Setter Property="FontSize" Value="30"/>
<Setter Property="Background" Value="Transparent"/>
<Setter Property="Foreground" Value="#BEBEBE"/>
<Setter Property="FontWeight" Value="Bold"/>
<Setter Property="HorizontalContentAlignment" Value="Center"/>
<Setter Property="VerticalContentAlignment" Value="Center"/>
</Style>
<!-- Image Button-Style -->
<Style Selector="Button.ImageButton">
<Setter Property="Background" Value="Transparent"/>
</Style>
<!-- Überschrift-TextBlock-Style -->
<Style Selector="TextBlock.ÜberschriftText">
<Setter Property="FontSize" Value="50"/>
<Setter Property="FontWeight" Value="Bold"/>
<Setter Property="Foreground" Value="#BEBEBE"/>
<Setter Property="TextDecorations" Value="Underline"/>
</Style>
<!-- Allgemeiner TextBlock-Style (Buttons usw.) -->
<Style Selector="TextBlock">
<Setter Property="FontSize" Value="20"/>
<Setter Property="FontWeight" Value="Bold"/>
<Setter Property="Foreground" Value="#BEBEBE"/>
</Style>
<!--Default Hintergrundfarbe-->
<Style Selector="Window">
<Setter Property="Background" Value="#1C1C1C"/>
</Style>
<!--Textboxen-->
<Style Selector="TextBox">
<Setter Property="Background" Value="White"/>
<Setter Property="Foreground" Value="Black"/>
<Setter Property="FontSize" Value="18"/>
<Setter Property="BorderBrush" Value="Red"/>
<Setter Property="BorderThickness" Value="2"/>
</Style>
</Style>

View File

@ -6,6 +6,12 @@
Icon="Ressourcen/Bilder/ProgrammIcon.ico">
<Grid>
<Grid.Background>
<ImageBrush Source="avares://AquaCare.View/Ressourcen/Bilder/TutorialsHintergrund.png" Stretch="UniformToFill"/>
</Grid.Background>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/> <!-- Überschrift -->
<RowDefinition Height="Auto"/> <!-- Buttons für Tutorials -->

View File

@ -13,10 +13,10 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("AquaCare.View")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+ea362ca3e776b0f0ddd532781e368f6a9a8d1857")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+52e84eef603a5d794883bebebdb43f1496ad8c8b")]
[assembly: System.Reflection.AssemblyProductAttribute("AquaCare.View")]
[assembly: System.Reflection.AssemblyTitleAttribute("AquaCare.View")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.
// Generated by the MSBuild WriteCodeFragment class.

View File

@ -1 +1 @@
f038ff9d20bdf3d801abe0537ad695b388c35c2a3970eae7248200119cd20bb7
95878c16f7dc6422f2be2fa50d64672d2b2fa99f479599bc77f69e2e80fd2eb9

View File

@ -1 +1 @@
9789aeac1c9fe28b7514ef6ab8a70d1f82f1d3f1e03893754db5801d2be5beb0
f72c1e88ea2604c503b4147ccae23e8e3465286483aeb07cf387ac376c1d6fb6