
Is there a way to display image when we hover mouse on form control? any method that i could use to achieve this goal?
*This post is locked for comments
I have the same question (0)Out of the box it displays the values that you return from the toolTip() method of a form control. That only has a string return value.
[View:https://msdn.microsoft.com/en-us/library/formstringcontrol.tooltip.aspx:750:50]
That means other data primitives such as an image (BinaryData) are not supported.
You could create your own Managed Host Control in Visual Studio, which might do just exactly what you want if you code it yourself.
[View:https://blogs.msdn.microsoft.com/tlefor/2013/04/29/dynamics-ax2012-the-managed-control-host-faq/:750:50]
[View:http://dev.goshoom.net/en/2011/10/tutorial-wpf-user-control/:750:50]
[View:https://msdn.microsoft.com/en-us/library/gg840386.aspx:750:50]