Tagged Questions
0
votes
1answer
17 views
Bind ToolTip.Content to a ProgressBar.Value in a DataTemplate
Tried many ways like defining the binding as RelativeSource=TemplatedParent, RelativeSource=FindAncestor, TemplateBinding and even ControlTemplate but the ToolTip remains blank.
Note: not looking for ...
6
votes
1answer
80 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
2answers
27 views
Forcing IDataErrorInfo.this[string columnName] to be called so that a validation tooltip is updated
I have a tricky problem with a WPF data grid and validation error tooltips not updating when validation messages change. This is with .Net 4 code, so I can't use INotifyDataErrorInfo.
I have an ...
0
votes
0answers
34 views
ToolTip like youtube style in video slider
Once upon a time seen a similar implementation for wpf but I can't find it now. Maybe someone knows and has seen similar examples?
http://prntscr.com/13jftg
0
votes
1answer
45 views
WPF DataContext in ToolTip
I'm trying to bind the tooltip of a ListBoxItem. I have this defined in my ControlTemplate:
<ControlTemplate TargetType="{x:Type ListBoxItem}">
<ControlTemplate.Resources>
...
0
votes
0answers
56 views
OnDemand Tooltip for WPF DataGrid row
I have a WPF Data Grid containing lot's of rows without virtualization. It's possible to set the tooltip for the rows by using a style and a converter. But using this the WPF uses the converter to ...
2
votes
2answers
105 views
Wpf TextBox style with tooltip
I want my text boxes to show a specific text as tool tip depending on the validation status. To do this I currently use the following code and it works:
<TextBox Name="textBox1">
...
0
votes
2answers
100 views
Customise Custom tooltips WPF / Silverlight
I have a custom tooltip style which works great, but, on some occassions I want to be able to hide the arrow (the Path section) or position the tooltip differently. How can I achieve that and how ...
1
vote
1answer
129 views
WPF ToolTip Trigger Not Working
I am implementing idataerrorinfo in my ViewModel to perform validation on some of my bound properties. I am then trying to use the following to set the tooltip and automatically show it:
<Style ...
0
votes
0answers
137 views
WPF Toolkit Chart - Custom tooltip - show complex dependent value
I have the following chart:
<cht:Chart ...>
<cht:Chart.Series>
<cht:LineSeries Name="LineSeries" Title="a"
DependentValueBinding="{Binding Path=Value}"
...
1
vote
2answers
193 views
C#: Tooltip on Focus on WPF TextBox
Here is my code.
private void txtPassword_PasswordChanged(object sender, RoutedEventArgs e)
{
Boolean Capslock = Console.CapsLock;
if (Capslock == true)
{
...
-2
votes
1answer
50 views
How to do this programmatically in wpf [closed]
How to do this programmatically in wpf
Submit Request
Submits the request to the server.
0
votes
0answers
36 views
Tooltips cause a slave WPF application to go behind other applications
We have a WPF application which is being launched from an MFC application. In order to make this a slightly better user experience we use the WindowInteropHelper to slave the WPF main window to a ...
0
votes
1answer
54 views
WPF image tooltip edge detection
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 ...
3
votes
2answers
88 views
Is it possible to enable ToolTipService.ShowOnDisabled=true for entire application
Is there any way to enable ToolTipService.ShowOnDisabled = true for entire application or do I have to set it for every single control in my WPF application manually?
I do not think restyling every ...
0
votes
1answer
93 views
Use WindowsFormHost inside a wpf tooltip
i am trying to host a windows form panel inside a ToolTip.
Below is the Xaml code and the class behind for the ToolTip.
The issue is if I'm using windowsFormsHost the panel doesnt change the color, ...
1
vote
1answer
100 views
Don't show multi binding tool tip when empty or null
I'm assuming the reason this isn't working is because my triggers are checking for an empty string or null, yet what I really have is a textblock with a Text property that is empty (or null). Does ...
0
votes
1answer
61 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>
...
2
votes
0answers
55 views
How to show tooltip when has overridden mouse_enter event (WPF)?
I have customized a taskbarnotifier follow this project: WPF Taskbar Notifier - A WPF Taskbar Notification
In this, author has overridden mouse enter event for hold window position in bottom right ...
1
vote
1answer
76 views
WPF tooltips from database
I need to be able to edit tooltips at runtime in an 3-tier WPF app. (This would probably be allowed for an admin, not for every user.) What I would like is to have the tooltips in the database, and ...
0
votes
2answers
252 views
How to set the tooltip of WPF combobox based on selected value?
I have a combo box in my WPF application.
Using below code I can set the tooltip as selected value.
ToolTip="{Binding Path=SelectedValue, RelativeSource={RelativeSource Self}}"
But if I need to ...
0
votes
2answers
45 views
How should I set the ToolTip.AutoPopDelay property within the XAML for a button?
I create a button in XAML:
<Grid>
<Button x:Name="RectangleButton"
Margin="0"
Width="{Binding LengthInPixels}"
Height="{Binding Height, ...
0
votes
0answers
81 views
Tooltip in wpf listview
I have created a WPF application in which i have a listview control. ListView will get populated when user click on browse button and select the files from the browse window. Listview will display ...
1
vote
1answer
127 views
Getting a tooltip in a user control to show databound text and stay open
I have a user control that shows a TextBox along with a small help icon.
My goal is to have a ToolTip pop-up, show some databound text and stay open when the mouse hovers over the help icon.
So, to ...
0
votes
1answer
44 views
Create Win32 Window without blocking the current UI
I have an WPF application, and I want to create new Win32 window (cause it's window written in C++) on button click.
And, I have a problem. If I navigate the cursor to the button, there is the tooltip ...
0
votes
1answer
155 views
Tooltip on Listview [duplicate]
Possible Duplicate:
How to set tooltip for a ListviewItem
I am converting a Windows Forms application to WPF. I am very new to WPF.
In my application I have a listview. When the user ...
0
votes
1answer
95 views
Binding Tooltip to Content Presenter Content
I am styling a TreeViewItem. The item has a content presenter that I wish to have a tooltip appear:
<ContentPresenter x:Name="PART_Header"
Cursor="Hand"
Grid.Column="1"
...
-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 ...
1
vote
1answer
125 views
Telerik RadToolTip won't hide when empty
I have a list I want to show in a tooltip, but when it is empty the tooltip should not exist. However, when it is empty it still shows a very small, empty box.
<t:RadDropDownButton.ToolTip>
...
0
votes
0answers
172 views
change wpf slider's autoToolTip content?
Is it possible to change slider's autoToolTip content? For example i'd like to replace the slider's value with two concated int values (as strings) which are computed on Slider_ValueChanged event. I ...
0
votes
2answers
217 views
WPF DataGrid, showing errors in row header with ToolTip
Default style for DataGridRow is as following:
<Style x:Key="{x:Type DataGridRow}" TargetType="{x:Type DataGridRow}">
<Setter Property="Background" Value="{DynamicResource {x:Static
...
0
votes
0answers
100 views
Making a tooltip for the tabitem header using resources and keyboard shortcuts
I'm trying to conciliate a couple of things in a WPF application and I can get them to work separately, but not together.
I have a Tabcontrol with several Tabitems, and since I want my app to support ...
0
votes
1answer
44 views
Different foreground in tooltips
may i know how change the foreground of a specific word in my tooltip? I want to change the "RED" words to colors.Red; Note that, all the remaining words in the tooltip should remain black color. Any ...
0
votes
0answers
105 views
WPF ToolTipService.BetweenShowDelay doesn't work
I have noticed that ToolTipServices.BetweenShowDelay doesn't work as expected.
Also, I found the same question
STR:
1. Create a WPF application in VS2010.
2. Add two buttons to the WPF window, which ...
0
votes
1answer
127 views
WPF Show ToolTip without animation and transparency
I wanna show ToolTip without any transparency (maybe to accomplish it - without animation), and hide it respectively.
How can I do it?
Thanks in advance
0
votes
2answers
436 views
Custom tooltip for listbox item in WPF
I've got a ListBox that displays an ObservableCollection of Talent objects. When the user hovers over each item in the ListBox, I'd like to display in the ToolTip several pieces of information about ...
1
vote
2answers
170 views
WPF - Setting ToolTip MaxWidth
I would like to set ToolTip maxwidth property to show long texts properly. In addition I need text wrapping. I used this style:
<Style TargetType="ToolTip">
<Setter ...
1
vote
1answer
76 views
wpf tooltips add additional string across application
Similar to this but more complicated.
I need to override all tooltips (and all controls that can have one but not have it now) with additional information about this control. I wanted to put ...
0
votes
1answer
252 views
WPF: using RichTextBox / FlowDocument in ToolTip
I would like to use RichTextDocument / Flow document as content of tooltip to get more formatting features in tooltip. But some strange results happen:
If use RichTextBox inside tooltip
<Label ...
1
vote
1answer
93 views
WPF style like css classes
I have a tooltip style like below:
<Style TargetType="{x:Type ToolTip}">
<Setter Property="OverridesDefaultStyle" Value="true"/>
<Setter ...
0
votes
2answers
122 views
wpf ToolTip and Style
How I can add ToolTip to this code ?
<Style TargetType="{x:Type ListBoxItem}">
</Style>
1
vote
1answer
199 views
Tooltip for ListBoxItem When binded to List of strings
How can we show tooltip for a ListBoxItem when ListBox control is binded to List of strings. Below, is the source code for my ListBox, where ConcernedConditions is of List type.
<ListBox ...
0
votes
1answer
130 views
How to bind the visibility of tooltip to the text in textblock?
<DataGrid x:Name="dgRecords1" CanUserAddRows="False" ColumnHeaderStyle="{DynamicResource DataGridColumnHeaderStyle1}" IsReadOnly="True"
Style="{DynamicResource ...
2
votes
3answers
516 views
Creating a WPF Tooltip on a Rect object
I'm working with an open source charting library that creates markers on a graph. (Dynamic Data Display) The markers that I'm creating are created with Rect objects. I noticed that all the Shapes in ...
0
votes
1answer
87 views
Can I prevent the WPF ToolTip from showing up from inside the ToolTipOpening event handler?
I have a canvas with MANY shapes in it and I want each one of them to display a string ToolTip. In order to save some memory I wanted to set the ToolTip value when the tooltip opens, so I set the ...
0
votes
2answers
123 views
Add image into a tooltip
I have some TextBlocks with tooltips and I'd like to add an image into the tooltips (that means, I'd like to have tooltips with text and images).
Does anybody knows how could I do that in a simple ...
1
vote
1answer
70 views
How to get tooltip to show based on other field being set?
Here is my code:
public string Units
{
get { return (string)GetValue(UnitsProperty); }
set { SetValue(UnitsToolTipVisibility, Visibility.Visible);
...
1
vote
1answer
331 views
Display DataGrid-ValidtionError in ToolTip
I am using a DataGrid for showing and editing data. The view (datagrid) is bound to a viewmodel. No I added a custom ValidationRule (following this tutorial: ...
0
votes
1answer
114 views
ToolTips binding messed up when grid is sorted
I have telerik grid control bound to ViewModel. One of the properties can contain relatively long string that is hard to fit into grid. So I am displaying the cell as a TextBlock with ...
0
votes
1answer
196 views
Silverlight Set Custom Tool Tip Programmatically
I have created the following custom tooltip with the custom template.
<ToolTip x:Class="FireFly.Controls.CustomToolTip"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...



