C # control the Windows taskbar in the program

Source: Internet
Author: User
If you want # ProgramTo control the Windows taskbar, there are two windows APIs to help you! They are findwashwa. And showwindow
The statement in C # is as follows:
Using system. runtime. interopservices;
[Dllimport ("user32.dll", entrypoint = "find0000wa ")]
Public static extern intptr find0000wa (String lp1, string lp2 );
[Dllimport ("user32.dll", entrypoint = "showwindow")]
Public static extern intptr showwindow (intptr hwnd, int _ value );
In fact, the Windows taskbar is a special window, so the window operation method is the same as the taskbar! Control CodeAs follows:
// Obtain the taskbar
Intptr htray = form1.find0000wa ("Shell_traywnd", String. Empty );
// Display the taskbar
Form1.showwindow (htray, 5 );
// Hide the taskbar
Form1.showwindow (htray, 0 );
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.