I'm a bit new to WPF but I'm having an issue were I'm trying to place a tooltip over an image or button with a background image. Basically what I'm trying to do is I want the tooltip to only show up where the image actually exists and not the transparency. This is an issue because as a button or image uses a rectangle in which it is stored the tooltip will be displayed within that area aswell.
Here is an example button (ignore the poor design but i need a complex shape to give you an idea)
Here is the edge of an image/button
Printscreen didn't capture the mouse, but imagine that the mouse is not actually hovering over the shape and that it is within the area of the imagebox/button.
Exmaple:1 http://i1109.photobucket.com/albums/h426/Melkirth/Imagearea.png
This is a small example of my actual code
<Button Height="160" Width="240" BorderThickness="0" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}">
<Button.Background>
<ImageBrush ImageSource="Images/Cloud1.png"></ImageBrush>
</Button.Background>
<Button.ToolTip>
<TextBlock Margin="10" FontSize="14">Click me to begin your test</TextBlock>
</Button.ToolTip>
</Button>