Keyboard.WindowsKeyboardEventsAPI Method

The keyboard events of Windows.
public static void WindowsKeyboardEventsAPI( 
KEYBOARD_PRESETS status 
)
This language is not supported or no code example is available.

Parameters

status
KEYBOARD_PRESETS

The status.

public static void WindowsKeyboardEventsAPI(KEYBOARD_PRESETS status)
 {
     switch (status)
     {
         case KEYBOARD_PRESETS.HIDE_OR_SHOW_ALL_WINDOWS:
             {
                 KeyDown(Keys.LWin);
                 KeyDown(Keys.D);
                 KeyUp(Keys.LWin);
                 KeyUp(Keys.D);
                 break;
             }
         case KEYBOARD_PRESETS.HIDE_THIS_WINDOW:
             {
                 KeyDown(Keys.LWin);
                 KeyDown(Keys.M);
                 KeyUp(Keys.LWin);
                 KeyUp(Keys.M);
                 break;
             }
         case KEYBOARD_PRESETS.SHOW_ALL_WINDOWS:
             {
                 KeyDown(Keys.LWin);
                 KeyDown(Keys.LShiftKey);
                 KeyDown(Keys.M);
                 KeyUp(Keys.LWin);
                 KeyUp(Keys.LShiftKey);
                 KeyUp(Keys.M);
                 break;
             }
     }
 }
					
This language is not supported or no code example is available.

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

.NET Core

Supported in: 5.0+, 6.0+

In this article

Definition