« Video to show CoreML … | Home | Import Calendar Items… »

Disable edge touch gestures in full screen windows

When you run a touch screen with Windows and make your Xojo app full screen, you may want to disable the edge gestures. Microsoft defines properties to be set for a window where you can use the option PKEY_EdgeGesture_DisableTouchWhenFullscreen to disable this.

dim w as new WindowsPropertiesMBS(self)
dim key as string = w.EdgeGestureDisableTouchWhenFullscreen

w.Value(key) = true


You may be able to set or query other properties if needed and of course query available keys.
New plugin will be available soon or ask for it via email.
02 11 17 - 15:50