Reputation: 1413
How do I include an image inside a tooltip?
The MSDN documentation says it's possible, but I don't understand how.
(To clarify, I am not trying to show a text tooltip when hovering over an image.)
(I am not using Windows Presentation Foundation, I'm using (Edit) Winform.)
Upvotes: 0
Views: 474
Reputation: 21286
I assume you mean that you're not using WPF, but WinForms. Both can be used by C# programs (and in fact, any CLR programs, so that includes C#, VB.NET, C++/CLR, and so many more languages).
In WinForms I don't think that's supported, so you might have to be creative and do it yourself.
WPF does support it on the other hand.
P.S. The documentation you linked is for WPF. The how-to is indeed in the link you offered.
P.P.S imo you should use WPF (like, always. Unless you simply can't) - that's actually my answer.
Upvotes: 1