This commit is contained in:
Meik
2025-11-11 11:03:42 +01:00
commit dc3e8a2e4c
582 changed files with 191465 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<ToolTip x:Class="FasdDesktopUi.Basics.UserControls.StatusTreshholdTooltip"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:FasdDesktopUi.Basics.UserControls"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<StackPanel Orientation="Vertical">
<TextBlock x:Name="rawValue" Text="Akteuller Wert" FontSize="11" Foreground="Blue"/>
<TextBlock x:Name="tresholdWarning" Text="Schwellwert Warnung" FontSize="11" Foreground="Orange"/>
<TextBlock x:Name="tresholdError" Text="Schwellwert Fehler" FontSize="11" Foreground="Red"/>
</StackPanel>
</ToolTip>