Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Programmatically open charm bar, power bar and start menu with C#

How to programatically open:

  • Charm Bar

  • Power Options

  • Start Menu

in windows 8?

I want to be able to open them from within my c# application

Cannot find the documentation I need

Thanks!

like image 378
GregM Avatar asked Nov 04 '22 07:11

GregM


1 Answers

I'd bet sending the Windows key (and the other key, as needed), would be sufficient.

Here is another post on how to do so with an API call.

SendKeys.Send and Windows Key

To open...

  • ... the Start Screen - just send the Windows key.
  • ... the Charms - send the Windows key + C.
  • ... the settings Charms bar (closet to the power options) - send the Windows key + I.
like image 142
Daniel A. White Avatar answered Nov 12 '22 17:11

Daniel A. White