BrightIdeasSoftware.ToolTipControl.MakeToolInfoStruct(System.Windows.Forms.IWin32Window)

Here are the examples of the csharp api class BrightIdeasSoftware.ToolTipControl.MakeToolInfoStruct(System.Windows.Forms.IWin32Window) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

12 Examples 7

1. Example

Project: tesvsnip
Source File: ToolTipControl.cs
public void AddTool(IWin32Window window)
        {
            NativeMethods.TOOLINFO lParam = MakeToolInfoStruct(window);
            NativeMethods.SendMessageTOOLINFO(Handle, TTM_ADDTOOL, 0, lParam);
        }

2. Example

Project: tesvsnip
Source File: ToolTipControl.cs
public void RemoveToolTip(IWin32Window window)
        {
            NativeMethods.TOOLINFO lParam = MakeToolInfoStruct(window);
            NativeMethods.SendMessageTOOLINFO(Handle, TTM_DELTOOL, 0, lParam);
        }

3. Example

Project: falloutsnip
Source File: ToolTipControl.cs
public void AddTool(IWin32Window window)
        {
            NativeMethods.TOOLINFO lParam = MakeToolInfoStruct(window);
            NativeMethods.SendMessageTOOLINFO(Handle, TTM_ADDTOOL, 0, lParam);
        }

4. Example

Project: falloutsnip
Source File: ToolTipControl.cs
public void RemoveToolTip(IWin32Window window)
        {
            NativeMethods.TOOLINFO lParam = MakeToolInfoStruct(window);
            NativeMethods.SendMessageTOOLINFO(Handle, TTM_DELTOOL, 0, lParam);
        }

5. Example

Project: logwizard
Source File: ToolTipControl.cs
public void AddTool(IWin32Window window) {
            NativeMethods.TOOLINFO lParam = this.MakeToolInfoStruct(window);
            NativeMethods.SendMessageTOOLINFO(this.Handle, TTM_ADDTOOL, 0, lParam);
        }

6. Example

Project: logwizard
Source File: ToolTipControl.cs
public void RemoveToolTip(IWin32Window window) {
            NativeMethods.TOOLINFO lParam = this.MakeToolInfoStruct(window);
            NativeMethods.SendMessageTOOLINFO(this.Handle, TTM_DELTOOL, 0, lParam);
        }

7. Example

Project: Bulk-Crap-Uninstaller
Source File: ToolTipControl.cs
public void AddTool(IWin32Window window) {
            NativeMethods.TOOLINFO lParam = this.MakeToolInfoStruct(window);
            NativeMethods.SendMessageTOOLINFO(this.Handle, TTM_ADDTOOL, 0, lParam);
        }

8. Example

Project: Bulk-Crap-Uninstaller
Source File: ToolTipControl.cs
public void RemoveToolTip(IWin32Window window) {
            NativeMethods.TOOLINFO lParam = this.MakeToolInfoStruct(window);
            NativeMethods.SendMessageTOOLINFO(this.Handle, TTM_DELTOOL, 0, lParam);
        }

9. Example

Project: SquareOne
Source File: ToolTipControl.cs
public void AddTool(IWin32Window window) {
            NativeMethods.TOOLINFO lParam = this.MakeToolInfoStruct(window);
            NativeMethods.SendMessageTOOLINFO(this.Handle, TTM_ADDTOOL, 0, lParam);
        }

10. Example

Project: SquareOne
Source File: ToolTipControl.cs
public void RemoveToolTip(IWin32Window window) {
            NativeMethods.TOOLINFO lParam = this.MakeToolInfoStruct(window);
            NativeMethods.SendMessageTOOLINFO(this.Handle, TTM_DELTOOL, 0, lParam);
        }

11. Example

Project: MapViewer
Source File: ToolTipControl.cs
public void AddTool(IWin32Window window) {
            NativeMethods.TOOLINFO lParam = this.MakeToolInfoStruct(window);
            NativeMethods.SendMessageTOOLINFO(this.Handle, TTM_ADDTOOL, 0, lParam);
        }

12. Example

Project: MapViewer
Source File: ToolTipControl.cs
public void RemoveToolTip(IWin32Window window) {
            NativeMethods.TOOLINFO lParam = this.MakeToolInfoStruct(window);
            NativeMethods.SendMessageTOOLINFO(this.Handle, TTM_DELTOOL, 0, lParam);
        }