Hi,
I'm writting extension to ArcGIS desktop, using c#.
In this extension I'm adding few dockable windows to ArcGIS desktop.
When I'm trying to open tool tip within this window, nothing happens. Here is the code:
private ToolTip m_ToolTip = new ToolTip();
...
m_ToolTip.ToolTipTitle = "Coordinate:";
//image_holder is a window that lives in the dockable window
m_ToolTip.Show(s, image_holder, e.X, e.Y, 5000);
Does anyone know how to open tooltip from these windows?
Thanks,
-Nir