Skip to content

Instantly share code, notes, and snippets.

View vickyleu's full-sized avatar
😑
Focusing

VickyLeu vickyleu

😑
Focusing
  • SBE
  • shenzhen
View GitHub Profile
@vickyleu
vickyleu / Program.cs
Created August 9, 2022 18:15 — forked from wldevries/Program.cs
Disable touch and gesture feedback in Windows
using System;
using System.Runtime.InteropServices;
namespace SetTouchSettings
{
class Program
{
private static class NativeMethods
{
[DllImport("user32.dll", EntryPoint = "SystemParametersInfo", SetLastError = true)]