15 lines
931 B
XML
15 lines
931 B
XML
<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>
|