How to detect windows8.1 start menu?

后端 未结 3 1289
北海茫月
北海茫月 2021-01-29 00:23

When we press start menu on windows 8.1 it show up all new start menu with apps in form of tiles. This menu shows up on entire screen. Is there a way to detect if this menu is o

3条回答
  •  温柔的废话
    2021-01-29 01:09

    Call CoCreateInstance(CLSID_AppVisibility,...) to get the object that implements IAppVisibility then call IAppVisibility::IsLauncherVisible to see if the start menu is visible.

    This is demonstrated in the Start screen visibility sample

提交回复
热议问题