Skip to content

DevExpress-Examples/winforms-lookup-show-custom-tooltips

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WinForms Lookup - Display custom tooltips

This example demonstrates how to display custom tooltips for drop-down items in the WinForms LookUpEdit control.

void lookUpEditHints1_BeforeShowingTooltip(object sender, EventArgs e) {
    ToolTipControllerShowEventArgs ee = e as ToolTipControllerShowEventArgs;
    ee.ToolTip += " + custom tool tip can be added";
}

Files to Review

Documentation