tags:

views:

194

answers:

2

I am attempting to make it so that when I hover over a button in my application, the "tooltip" displays my wording, along with a transparent background, instead of the white background.

I am merely trying to change the tooltip default settings to a transparent background..

I have looked and looked, but to no success.. anyone have any ideas?

Thanks.

+1  A: 

The class ToolTip has property Background. See http://msdn.microsoft.com/ru-ru/library/system.windows.controls.tooltip_members.aspx. You can set Background to Transparent.

Vlad
Gotcha.. I just realized my simple mistake.. I just needed to set the <Tooltip Background="Transparent"> Thanks!
Kyle
A: 
<Style x:Key="{x:Type ToolTip}"
       TargetType="{x:Type ToolTip}">
    <Setter Property="Background"
            Value="Transparent" />
</Style>

Place this in the resource dictionary of your view, or for your application.

dhopton