C # WPF keeps your window pinned to the desktop

Source: Internet
Author: User

Original: C # WPF keeps your window pinned to the desktop

            IntPtr hWnd = new Windowinterophelper (Application.Current.MainWindow). Handle;            IntPtr Hwndprogman = FindWindow ("ProgMan", "program Manager");            SetParent (HWnd, Hwndprogman);

  

        [DllImport ("user32.dll", SetLastError = True)]        static extern int SetWindowLong (IntPtr hWnd, int nIndex, IntPtr dwnewlong);        [DllImport ("user32.dll", SetLastError = True)]        static extern IntPtr FindWindow (string lpwindowclass, String lpwindowname);        [DllImport ("user32.dll", SetLastError = True)]        static extern IntPtr FindWindowEx (IntPtr parenthandle, IntPtr childafter, String className, String windowtitle);        const int gwl_hwndparent =-8;        [DllImport ("User32.dll")]        static extern IntPtr SetParent (IntPtr hwndchild, IntPtr hwndnewparent);

  

var handle = new Windowinterophelper (Application.Current.MainWindow). Handle;            IntPtr Hprog = FindWindowEx (                FindWindowEx (                    FindWindow ("ProgMan", "program Manager"),                    IntPtr.Zero, " Shelldll_defview "," "                ),                IntPtr.Zero," SysListView32 "," Folderview "            );            SetWindowLong (handle, Gwl_hwndparent, Hprog);

  

C # WPF keeps your window pinned to the desktop

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.