How to disable Windows Ink fully or make it work properly

Vee 0 Reputation points
2026-01-14T12:26:30.0533333+00:00

I want to use the scrollbar on focused apps but for some reasone I can't hijack the mouse while using Windows ink, Im using a Huion Kamvas right, and if sometimes WIndows ink doesn't start wich makes everything easier but it usually does so I want to fix it.

In resume:WIndows ink doesnt focus current clicked screen with the pen.

Windows for home | Windows 10 | Windows ink and touch
0 comments No comments

2 answers

Sort by: Newest
  1. John Oliver 11,680 Reputation points Independent Advisor
    2026-01-15T15:19:17.8866667+00:00

    Hello Vee, thanks for posting this in the community.

    If you need Windows Ink for certain apps but want proper focus, start by updating your drivers. Download the latest Huion driver from Huion Support page and make sure your Windows and graphics drivers are up to date. In the Huion driver settings, set Pen Mode to Mouse Mode (sometimes called “Relative Mode”). This makes the pen behave more like a mouse, which improves focusing.

    If you prefer to disable Windows Ink completely, open the Huion Tablet Driver, go to Pen Settings or Tablet Settings, and uncheck “Enable Windows Ink.” Apply the changes and restart your PC. You can also turn off Windows Ink features in Windows by going to Settings, then Bluetooth and Devices > Devices > Pen & Windows Ink. Disable “Show Visual Effects” and “Show Cursor,” and if available, turn off Windows Ink Workspace from the taskbar settings.

    Kind regards,

    John Oli

    Was this answer helpful?

    0 comments No comments

  2. AI answer

    2026-01-14T12:26:45.8166667+00:00

    To disable Windows Ink or adjust its behavior, you can follow these steps:

    1. Hide the "Ignore touch input when I’m using my pen" setting: If your device does not support simultaneous pen and touch input, you can hide this setting by creating a registry key. Set the following registry key as a DWORD and set it to 1: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Pen\HideSPTSettings
    2. Adjust Input Device Types: In your application, if you are using an InkCanvas, you can configure the InkPresenter to manage input types. You can set the InputDeviceTypes property to include only the types of input you want to support. For example, if you want to disable pen input, you can exclude it from the settings:
         inkCanvas.InkPresenter.InputDeviceTypes = Windows.UI.Core.CoreInputDeviceTypes.Mouse;
      
      This will allow mouse input without interference from pen input.
    3. Ensure Windows Ink is not interfering: If Windows Ink is causing issues with focus, ensure that your application is handling focus events correctly and that the InkCanvas is not capturing focus when you intend to use the scrollbar.

    By implementing these adjustments, you should be able to disable or properly configure Windows Ink to suit your needs.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.