Create a EXE File or BUTTON C#

132 Views Asked by At

Hello, is there a way to create a .exe or button in C# to do the same as WIN+L? Thanks

1

There are 1 best solutions below

0
On BEST ANSWER

You can use the following:

//using System.Runtime.InteropServices;

[DllImport("user32", SetLastError = true)]
static extern bool LockWorkStation();

And then just call within your button_Click:

LockWorkStation();