Category / Section
How to display tooltips for a control in ComboDropDown?
1 min read
To display tooltips for a control in ComboDropDown, focus has to be given to the PopupControlContainer's Popup event.
C#
private void popupControlContainer1_Popup(object sender, System.EventArgs e)
{
this.popupControlContainer1.Focus();
}
VB
Private Sub popupControlContainer1_Popup(ByVal sender As Object, ByVal e As System.EventArgs)
Me.popupControlContainer1.Focus()
End Sub
Sample: