GregM
GregM

Reputation: 3734

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

How to programatically open:

in windows 8?

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

Cannot find the documentation I need

Thanks!

Upvotes: 5

Views: 4320

Answers (1)

Daniel A. White
Daniel A. White

Reputation: 190941

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.

Upvotes: 2

Related Questions