ToolTip with Close button
-
Hi all, How to add a close button to System.Windows.Forms.ToolTip ? Please help me. Thanks in advance San
Standard tool tip don't have close button. You need to create your own tool tip by deriving from
System.Windows.Forms.ToolTip
and settingOwnerDraw
astrue
. Handle the draw event to add your code.Navaneeth How to use google | Ask smart questions
-
Standard tool tip don't have close button. You need to create your own tool tip by deriving from
System.Windows.Forms.ToolTip
and settingOwnerDraw
astrue
. Handle the draw event to add your code.Navaneeth How to use google | Ask smart questions
-
Well, I got one here[^]. It shows how to create owner drawn tooltip.
Navaneeth How to use google | Ask smart questions
-
Well, I got one here[^]. It shows how to create owner drawn tooltip.
Navaneeth How to use google | Ask smart questions
Maybe better use customised MessageBox with buttons.