Hi
I wanted to have nice tooltip for my TextBox, so I started with simple tooltip.
<TextBox>
<TextBox.ToolTip>
<StackPanel>
<TextBlock>Nice text</TextBlock>
<TextBlock>Nice text</TextBlock>
</StackPanel>
</TextBox.ToolTip>
</TextBox>
However I have a dozen textbox...
Hi
I created my control which looks like that
<UserControl BorderBrush="#A9C2DE" HorizontalAlignment="Left" x:Class="WPFDiagramDesignerControl.Components.UcWBSBlock"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Height="86" Width="151" >
<UserControl.Resourc...
Hi,
I am creating a NotifyIcon and then calling this to show a balloon-tip from the system tray:
_trayIcon.ShowBalloonTip(100000, notifierTitle, notifierText, ToolTipIcon.Info);
Everything works fine but I wondered: is there any way to format the text in a system tray tooltip? (In my case, notifierText)
Obviously, I am adding newlin...
Hi,
I need to create a similar function to Toast.makeText(...) but more fast to disappear. I have seen such messagebox in the software "Le monde fr" when you select a button from the toolbar down. Its appear and disappear very fast if you move to another icon. I m looking to do the same functionnality but cannot figure out how to do tha...
I'm looking to customize the tooltip look of an asp.net chart. Does anyone have a suggestion on where to start looking?
...
I have a chart that displays a tooltip (string) when hovered over. Is there a way to control the delay/time the tooltip is displayed to the user?
<asp:Chart runat="server" ID="Chart2" Width="340px" Height="265px">
<!--Define Things in here-->
</asp:Chart>
Backend:
//define what rec is
string tooltip = rec;
Cha...
How do I make a tooltip of a toolbar button (which is based on the same Action as a menu item) show the accelerator at the right?
...
I am trying to display tool tip to a stack panel based on property HasValidationError.
<Style TargetType="StackPanel" x:Key="stackstyle">
<Style.Triggers>
<DataTrigger Binding="{Binding HasValidationError}" Value="True">
<Setter Property="ToolTip">
<Setter.V...
Hi Everyone!
I've a webpage You can see webpage here!. There is a facebook user image. When I hover mouse over this then it show tooltip but when I leave mouse from this then it reload the image. To see this reloading image on mouse leave, you can see status bar of your browser. I don't want to reload this image. Please see the source c...
I use JComponent.setToolTipText to get tooltips in my java application, but unlike, e.g., eclipse, if I switch to another application when a tip is showing, it remains hovering over what I'm doing until I switch back to the java app and move the mouse around to get it off the element before returning to the alternate application. Is the...
I asked a question closely related to this awhile ago:
http://stackoverflow.com/questions/2878043/alternative-way-to-notify-the-user-of-an-error
In short, i was trying to find a quick and easy way to notify the user of errors without using popups.
Now i have implemented this using tooltip baloons. The problem is that even if i give it ...
I'm looking for some JQuery tooltip plugin or even a simple solution to show a dynamic value from an input field when I mouse over a determined link (text or image)
I've tried a lot of plugins but none can give me the dynamic value of the field.
Example:
Input field:
input type="text" name="example" id="example" value=""
Link for m...
Hello stackoverflowers,
Does anybody know how to skin the datatip of a hslider component.
I have created a 3 skins with degrafa. One for the track, one for thumb and one for the datatip. I had no problem attaching the skins for the track and thumb of the hslider component. But how can i skin the datatip?
Does anybody know?
DJ
...
Hi, I wanted to be able to change the tooltip on checked and unchecked through the visualstatemanager, this is what i got so far but it doesn't work:
<VisualState x:Name="Checked">
<Storyboard>
<ObjectAnimationUsingKeyFrames Duration="0" Storyboard.TargetProperty="ToolTipService.ToolTip" Storyboard.TargetName="btn">
<Discret...
Hello,
I want to use the tipsy tooltip as a toolbar. When hovering a link I would like the toolbar to show, let's say a div, and when entering the toolbar area I want it to stay visible, not hide. So my questions are:
How do I show a hidden div?
How do I keep the tooltip visible when entering the tooltip area?
...
I'm getting started with PyQt4 and tested the following code...
import sys
from PyQt4 import QtGui
from PyQt4 import QtCore
class Tooltip(QtGui.QWidget):
def __init__(self, parent=None):
QtGui.QWidget.__init__(self, parent)
self.setGeometry(300, 300, 250, 150)
self.setWindowTitle('Tooltip')
self.s...
Hello.
I'd like to know the difference between title attr of the tag "a" and alt attr of the tag img.
Also, wich should I use when I have an image inside an a? Just like in this case:
<a class="duplicar" href="#"><img src="Images/btnSegDuplicar.gif" alt ="Duplicar" width="76" height="20" /></a>
Right now, as you can see, I'm using t...
My goal is to use CSS ONLY for some tooltips. I like the solution here: http://sixrevisions.com/css/css-only-tooltips/
The problem I'm having is when hovering over the first "qwer" (the second TD of the first TR), you can see the second "qwer" (second TD of the SECOND TR) over the tooltip. I've been playing with the z-index propertie...
Hi
I am using this script.
http://digitalhymn.com/argilla/tipmage/
It is not possible to apply Tipmage to more than one image in a single page
Is this possible to apply this class to more than one image?
Thanks
...
Hi,
I'm new to jQuery, but have been working with javascript and DHTML for several years. Trying to transfer over my knowledge of that to jQuery but have run into a snag.
When hovering over a div, the popup comes up fine. If you leave the initial trigger div, the popup goes away - great. The problem occurs when I move off the trigger ...