I have a project in which i would like to be able to have a tooltip on some control that would incoporate some controls like textbox and datepicker. The idea would be to have some sort of a popup window with limited graphic but some control wo interact.
I know how to add a ‘normal’ tooltip to a control, but when you move, the tooltip disapear so I can’t interact with it.
is this possible? If so how and if not, is there any alternative to this ?
Thanks
You should use a
Popupinstead of aToolTipExample. A
Popupis opened when the mouse moves over theTextBoxand stays open as long as the mouse is over theTextBoxor thePopupIs uses a
BooleanOrConverterUpdate
To do this for a cell in
DataGridyou have a few options. Two of them are to add aPopupinside theDataTemplatesforDataGridTemplateColumn, or you can add it to theDataGridCell Template. Here is an example of the later. It will require you to set SelectionMode=”Single” and SelectionUnit=”Cell” on theDataGrid