Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

SetClipboardViewer (user32)
 
.
Summary

C# Signature:

[DllImport("user32.dll")]
static extern IntPtr SetClipboardViewer(IntPtr hWndNewViewer);

User-Defined Types:

None.

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

    [DllImport("user32.dll")]
    static extern IntPtr SetClipboardViewer(IntPtr hWndNewViewer);

    [DllImport("user32.dll")]
    static extern IntPtr GetClipboardViewer();

    [DllImport("user32.dll")]
    [return: MarshalAs(UnmanagedType.Bool)]
    static extern bool ChangeClipboardChain(IntPtr hWndRemove, IntPtr hWndNewNext);

    [DllImport("user32.dll", SetLastError = true)]
    static extern int SendMessage(IntPtr hWnd, int Msg, IntPtr wParam, IntPtr lParam);

    IntPtr hWndNextWindow;

    protected override void WndProc(ref Message m)
    {
        switch(m.Msg)
        {
        case (0x0001): // WM_CREATE
            hWndNextWindow = SetClipboardViewer(this.Handle);
            break;
        case (0x0002): // WM_DESTROY
            ChangeClipboardChain(this.Handle, hWndNextWindow);
            break;
        case (0x030D): // WM_CHANGECBCHAIN
            if (m.WParam == hWndNextWindow)
            hWndNextWindow = m.LParam;
            else if (hWndNextWindow != IntPtr.Zero)
            SendMessage(hWndNextWindow, m.Msg, m.WParam, m.LParam);
            break;
        case (0x0308): // WM_DRAWCLIPBOARD
            {
            // If the clipboard has changed, this event will be executed.
            }
            SendMessage(hWndNextWindow, m.Msg, m.WParam, m.LParam);
            break;
        }

        base.WndProc(ref m);
    }

Alternative Managed API:

The ManagedWindowsApi project (http://mwinapi.sourceforge.net) provides a

ClipboardNotifier class.

Documentation

Please edit this page!

Do you have...

  • helpful tips or sample code to share for using this API in managed code?
  • corrections to the existing content?
  • variations of the signature you want to share?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions