Files
C4IT-F4SD-Client/FasdDesktopUi/Basics/UserControls/CustomMenuItemToolTipTemplate.xaml
Meik 0b52999b1d feat: expand cockpit integrations and support workflows
Add Phoenix remote desktop, action connector, documentation engine, and gamification support. Refactor support-case processing and search/action UI, and update installer assets and dependencies.
2026-07-13 11:16:53 +02:00

24 lines
1.2 KiB
XML

<ToolTip x:Class="FasdDesktopUi.Basics.UserControls.CustomMenuItemToolTipTemplate"
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"
>
<ToolTip.Template>
<ControlTemplate>
<Border BorderBrush="{DynamicResource FontColor.Menu.Categories}" BorderThickness="1" CornerRadius="5"
Background="{DynamicResource BackgroundColor.Menu.Categories}"
>
<TextBlock Text="{Binding Text, RelativeSource={RelativeSource AncestorType=ToolTip}}"
Foreground="{DynamicResource FontColor.Menu.Categories}"
TextWrapping="Wrap"
MaxWidth="300"
Margin="8,3,8,5"
/>
</Border>
</ControlTemplate>
</ToolTip.Template>
</ToolTip>