6
votes
1answer
68 views

WPF: Custom tooltip arrow placement

I have a custom tooltip style that basically creates a nice black tooltip with an arrow pointing to the location of the item you hovered over. The problem is that sometimes the tooltip will not ...
0
votes
1answer
286 views

Get Y value across .NET chart series from X value

using C# with .NET chart. I am trying to graph several waveforms, and I wish to move my mouse across the chart area, and have my tooltip display the Y value of each series in the chart at this X ...
0
votes
1answer
58 views

WPF binding to Ancestor Source

I'm trying to show a ToolTip with the hovered image but with different dimensions. I tried this: <Image Source="c:\Pictures\Airplane.jpg" Width="50" Height="50"> <Image.ToolTip> ...
0
votes
0answers
107 views

ToolTip - showing even when leaving control & flickering issues

I am quite surprised that no one came up with the following 2 problems regarding the ToolTip component of the .NET framework: Flickering issues. ToolTip not vanishing during "high-frequency" updates ...
0
votes
1answer
82 views

Create custom tooltip with an arrow head

Is it possible to make a custom control with an arrow head so it looks something like this: The only problem I have is creating the arrow head, because the content of the control will be easy to ...
1
vote
1answer
120 views

Change tooltip control

I have a series of textboxes with which I want to associate a tooltip with. This tooltip would appear when the user clicks on a black textbox, then disappear when they start typing or when they leave ...
3
votes
2answers
869 views

C# show tooltip on textbox entry

I have a textbox that requires data to be entered in a certain way. I have implemented some cell validating techniques to check the data after it has been entered, but I'd like to provide the user ...
-2
votes
1answer
92 views

DataVisualization Tooltip behaviour

I've successfully setup my XAML to retrieve a custom tooltip generated in my viewmodel; however, when I run in debug mode and place a break at the "getter", I see that while building my chart, it is ...
0
votes
1answer
35 views

How to know when the context menu of a control has been shown

I have a control that draws a diagram, and I show a tooltip when the user is hover an object. I have also implemented the functionality to show a context menu when you right click the object. The ...
0
votes
3answers
162 views

How to correctly use ToolTip?

I am working on an exercise to create a custom control. The custom control is a simple label inheriting Control. Using the tool tip code below: m_toolTip = new ToolTip(); protected override void ...
1
vote
1answer
216 views

ToolTip with image inside of it

I currently have a hyperlink control as such: <asp:HyperLink ID="logoLink" runat="server" NavigateUrl="#"></asp:HyperLink> I am setting the logo text of it as such within my grid: ...
0
votes
2answers
342 views

Tooltip positioning C#

I have a picturebox that has a mousehover event to show a tooltip based on the status of a service. This seems to be working, but it kind of just pops up where the mouse is and sometimes under the ...
1
vote
1answer
505 views

Silverlight Tooltip Remain Visible With Mouseover

Hello and thanks for the help. I have a Treeview that I am populating with a Hierarchical data template, and currently the bottom nodes have a tooltip that generates a small stack panel that is ...
1
vote
1answer
78 views

Is it possible to have a clickable button in a tooltip's content and to use it without closing the tooltip?

In my WPF application, I have a tooltip that shows many messages with paging. The user should be able to see the next message by pressing next button. The problem is that when the next button is ...
0
votes
1answer
338 views

Display tooltip when mouse movement stop

I have a grid-view with merged cells and rows which look like this. I am using grid view mouse enter cell and mouse leave cell events to call the tool-tip show and hide methods. Problem I am ...
0
votes
2answers
271 views

How to disable Visual Style on tooltip C#

How can I disable the visual style only for the tooltip, not for all the application, because if I do so it will change my toolstrip visual style and it will look ugly? What I have: What I want: ...
0
votes
2answers
455 views

ErrorProvider tooltip message

I am new to c# and I have this problem: I have here a textbox with errorProvider and a label above my textbox.. After validating the value in my textbox, whenever value entered is not acceptable, ...
4
votes
1answer
410 views

Tooltip attached to mouse in C#

How do I get a tooltip that is attached to the mouse cursor using C#? I'm trying to achieve an effect like the following, a small tooltip showing the status of Ctrl / Shift / Alt keys. I'm currently ...
1
vote
1answer
1k views

Show tooltip onHover SlickGrid's row

Im newbie with jquery. I've a task to put a tooltip on each row of a slickgrid. I know how to ajax it. But, reading the slickgrid documentation there's nothing in options like "hover" or "tooltip". ...
0
votes
0answers
79 views

retrieve System.Windows.Forms.ToolTip position

i have some code in a ListView_MouseMove event to position the ToolTip control myself. Me.tipLog.Show(sMessage, Me.lvwScheduler, pntPosition, Me.tipLog.AutoPopDelay) how can i retrieve its real ...
3
votes
2answers
447 views

Achieve tooltip like this in VB.net?

I found this tooltip that pops up in MS Word 2010 when someone enters a copy count above 32767, I would like to know how (and if) it is possible to implement a tooltip such as this within a VB.net ...
0
votes
1answer
84 views

Getting a .net tooltip from RFT

Using Rational Functional Tester, I need to verify the tooltip objects created in .net. I can use reflection to invoke methods on .net controls I have found using RFT, but there doesn't seem to be a ...
12
votes
3answers
6k views

How can I add a hint or tooltip to a label in C# Winforms?

It seems that the Label has no Hint or ToolTip or Hovertext property. So what is the preferred method to show a hint, tooltip, or hover text when the Label is approached by the mouse?
2
votes
2answers
478 views

how to force display of tooltip in C#?

it's possible force to display of tooltip in a control? I have no idea how do this. Any help is very appreciated. Thanks in advance!
5
votes
1answer
1k views

How to show a .NET Balloon ToolTip?

How do i show an IsBalloon ToolTip in WinForms? Right now i try: ToolTip hint = new ToolTip(); hint.IsBalloon = true; hint.ToolTipCaption = "Hello, world!" hint.ToolTipIcon = ToolTipIcon.Error; ...
4
votes
1answer
172 views

How can I give a group of controls a single tooltip, and have it appear smoothly?

I have a grid of controls, where each editable control (checkbox, combobox, etc.) has an associated label. I want to share a tooltip between the label and its control. Now this is something that I ...
0
votes
1answer
610 views

MS Charts: Possible to reduce tooltip delay?

I am using Microsoft Charts to display a column chart with tooltips. However, I would like to reduce (or completely remove) the popup delay for the tooltips. Is this possible? ...
0
votes
2answers
2k views

How can I change the text of an existing ToolTip control, in a PictureBox in my WinForm application?

I have a winform application which has a dynamic number (based on a database value) of PictureBoxes. Each P-Box has a Tooltip control. How can I change the ToolTip Text without having any memory ...
6
votes
3answers
7k views

Showing tool tip for every item in datagridview row when mouse is above it

How can you show the tooltip for datagridview for every item in datagridview when you hover mouse over the item in that particular row? I have table product with columns: product name product price ...
0
votes
1answer
428 views

ToolTip on Adorner doesn't show up

I have an adorner defined as follows: private class ErrorAdorner : Adorner { private readonly Border _errorBorder; public ErrorAdorner(UIElement adornedElement) : ...
1
vote
1answer
881 views

IsBalloon property makes Windows Forms ToolTip position inconsistent

When I set the IsBalloon property of a ToolTip control, and then use the ToolTip.Show() method to display it, the balloon's tail doesn't always point at the location I request. It seems like the first ...
4
votes
1answer
1k views

How to remove the ToolTip (Press F1 for more Help) from my word Addin

Currently i am working on an addin, in which i am having a Ribbon.In that Ribbon, If i move the mouse over any button I am getting my Feature description(description of that button) as well as Screen ...
1
vote
2answers
243 views

Displaying tooltips on disabled menu items or alternative solutions in .NET

I'm trying to display a tooltip on a disabled ToolStripMenuItem, to inform the user why it is disabled. My initial thought was (as events don't get fired on disabled controls) to pick up the ...
8
votes
1answer
493 views

check if BalloonTooltip was closed by user

how can I check if BalloonTip attached to NotifyIcon was closed by user clicking "Close" icon or had dissapeared after give timeout? It seems that BalloonTipClosed is fired in both cases, and ...
0
votes
2answers
1k views

Hyperlink in Tooltip

How to create hyperlink in tooltip like in below image
1
vote
3answers
561 views

How to add label and button controls in .Net ToolTip

HI, I want to customize the existing win-form tool-tip control to host child controls like label and buttons with adjustable tool-tip window size and other common tool-tip properties. Please also ...
0
votes
1answer
474 views

How to disable tooltips for an entire .net DataGridView column

I have a winform datagridview which contains a column of buttons. I'd like to disable tooltips for that column only -- tooltips should still show up for other columns. I find tooltips get in the way ...
3
votes
2answers
3k views

Is it possible to change ToolStripMenuItem tooltip font?

I have a dynamically filled ContextMenuStrip where each ToolStripMenuItem has a formatted text for the tooltip. And, in order for this text to make sense to the user, I must use a monospaced font, ...
2
votes
2answers
3k views

Why aren't balloon tips shown pointing at the correct control?

I am using a ToolTip control on my form, but have discovered that even though my cursor is on one control, the tooltip is showing somewhere else. I would like to show this within the control my cursor ...
5
votes
1answer
926 views

How can I display a tooltip constantly while a control is focused?

How can I display a tooltip constantly while a control is focused? I've tried so many things and nothing seems to work. Right now I have something like the following: <TextBox ...
2
votes
2answers
4k views

How to add a tooltip for a datagrid header, where the header text is generated dynamically?

I need to add a tooltip for a column header of a DataGrid(silverlight 4). I will generate the number of columns and column header text dynamically. GridColumnCreation(....) { var AllHeaderText = ...
3
votes
1answer
1k views

What causes the .NET ToolTip not to work a second time?

Using VB.NET 2008 desktop project, I created a simple tooltip on Form_Load event and attached it to a button on the form. Looks great when user hovers over button but times out after 30 seconds (which ...
1
vote
3answers
425 views

Why does the ToolTip not appear when set to a long string?

I am working in VB.Net 2010 framework 2.0. I am setting a big string to tooltip object. In this case tooltip is not appearing. If the string is short (say of 10 lines), tooptip is appearing properly. ...
0
votes
2answers
185 views

Weird rendering behavior in WPF for ToolTips with brackets or parentheses

I have a button with a tool tip defined as follows: <Button Width="25" ToolTip="Delete selected name (Ctrl + F12).">-</Button> When I hover over the button at run time the tooltip ...
1
vote
2answers
228 views

Multiple Tooltips to same Control

I am using Windows Forms Application in C# I have a label having Date as Text 16-12-2010 Now I want to display different Tooltip when mouse is over Date/Month/Year e.g. When Cursor on Date : Then ...
0
votes
1answer
432 views

How do you show a tooltip for a DataGridComboBoxColumn?

I want to show a tool tip for the element style (the non-editing mode) of a DataGridComboBoxColumn. I have not been able to figure out a good way of doing this. In the example below I can either ...
1
vote
2answers
1k views

ToolTip Stay displayed

In C#, how can I make a ToolTip remain displayed until the mouse move out of the ToolTip region. No matter what delay I set it stay displayed. I tried to change AutoPopDelay, InitialDelay, and ...
4
votes
1answer
1k views

Tooltip baloon display position (for error notification)

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 ...
1
vote
1answer
1k views

System tray tooltip formatting

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 ...
4
votes
2answers
581 views

Change ToolTip font

I need a tooltip with custom Font. I have the following code, and this works... but the tooltip size does not fit the text. Where is the error? Public Class KeolisTooltip Inherits ToolTip ...

1 2