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

Search Results for "SHFullScreen" in [All]

aygshell

.
Summary
SHFullScreen is a simple boolean function for hiding or displaying CE and PocketPC desktop elements such as the TaskBar, the Start Icon and the SIP (Standard Input Panel).
.

  static extern uint SHFullScreen(IntPtr hwndRequester, uint dwState);

.

  Public Shared Function SHFullScreen( hWnd as IntPtr, flags as Integer ) as Integer

.

Update. Microsoft's SHFullScreen definition at http://msdn.microsoft.com/en-us/library/aa453694.aspx states that SHFS_SHOWTASKBAR and SHFS_HIDETASKBAR can be used with Windows CE, but remaining State flags pertaining to the SIP and Start Icons are only relevant in Pocket PC.

.

static extern bool SHFullScreen(IntPtr hwndRequester, uint dwState);

.

      return SHFullScreen(hwnd, SHFS_HIDETASKBAR | SHFS_HIDESIPBUTTON | SHFS_HIDESTARTICON);

.

      return SHFullScreen(hwnd, SHFS_SHOWTASKBAR | SHFS_SHOWSIPBUTTON | SHFS_SHOWSTARTICON);

.

Functions for doing the same uses without using SHFullScreen: http://www.codeproject.com/ce/fullscreen.asp


 
Access PInvoke.net directly from VS: