Hide System taskbar

Source: Internet
Author: User

The simplest method is:

Findwindow ("shell_traywnd", null)-> showwindow (sw_hide );

 

The code above can indeed hide the taskbar. However, if you open a window to maximize the size of the window, the original taskbar is still blank. Call Win32 API-systemparametersinfo (spi_setworkarea) and reset the desktop work area to solve this problem. The Code is as follows:

Void gshowhidetaskbar (bool Bhide/* = false */) <br/> {<br/> crect rectworkarea = crect (0, 0, 0 ); <br/> crect recttaskbar = crect (0, 0, 0); </P> <p> cwnd * pwnd = cwnd: findwindow (_ T ("shell_traywnd "), null); </P> <p> If (Bhide) <br/>{< br/> // code to hide the System Task Bar <br/> systemparametersinfo (spi_getworkarea, <br/> 0, <br/> (lpvoid) & rectworkarea, <br/> 0); </P> <p> If (pwnd) <br/>{< br/> pwnd-> getwindowrect (recttaskbar); <br/> rectworkarea. bottom + = recttaskbar. height (); <br/> systemparametersinfo (spi_setworkarea, <br/> 0, <br/> (lpvoid) & rectworkarea, <br/> 0 ); </P> <p> pwnd-> showwindow (sw_hide ); <br/>}< br/> else <br/> {<br/> // code to show the system task bar <br/> systemparametersinfo (spi_getworkarea, <br/> 0, <br/> (lpvoid) & rectworkarea, <br/> 0); <br/> If (pwnd) <br/>{< br/> pwnd-> getwindowrect (recttaskbar); <br/> rectworkarea. bottom-= recttaskbar. height (); <br/> systemparametersinfo (spi_setworkarea, <br/> 0, <br/> (lpvoid) & rectworkarea, <br/> 0 ); </P> <p> pwnd-> showwindow (sw_show); <br/>}< br/>}

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.