https://bugzilla.novell.com/show_bug.cgi?id=412849
User [EMAIL PROTECTED] added comment https://bugzilla.novell.com/show_bug.cgi?id=412849#c1 Ivan Zlatev <[EMAIL PROTECTED]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[EMAIL PROTECTED] Status|NEW |RESOLVED Resolution| |WONTFIX --- Comment #1 from Ivan Zlatev <[EMAIL PROTECTED]> 2008-07-29 18:31:33 MDT --- AFAIK there is absolutely no way we can do that on Linux. We have absolutely no control over the window manager and the buttons and there is no concept of a help button unfortunately. You could however workaround that by say a custom button somewhere or a menu that sends the WM_HELP message to the control clicked under cursor with the LParam a HELPINFO struct[1] with the MousePos field set in screen coordinates (get them from Control.MousePosition). This will be handled by as if the "?" button was clicked in Windows. I am sorry, but I will have to close this bug as WONTFIX due to the circumstances. [1] [StructLayout(LayoutKind.Sequential)] internal struct HELPINFO { internal uint cbSize; internal int iContextType; internal int iCtrlId; internal IntPtr hItemHandle; internal uint dwContextId; internal POINT MousePos; } [StructLayout(LayoutKind.Sequential)] internal struct POINT { internal int x; internal int y; internal POINT (int x, int y) { this.x = x; this.y = y; } internal Point ToPoint () { return new Point (x, y); } public override string ToString () { return "Point {" + x.ToString () + ", " + y.ToString () + "}"; } } -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
