Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Windows Mobile 6.5 Gestures and C# 2.0 Application

I am looking for some advice on handling WM 6.5 Gestures in a C# 2.0 Application. Currently things like pan and scroll are interfering with controls like the Tab Control and listviews.

Is there a way to catch these using C# 2.0 and handling them? I've been looking at the MSDN wrappers etc but these are built using .Net 3.5 and wont work with my application and I keep getting errors.

Thanks for your help in advance,

Morris

like image 799
Morrislgn Avatar asked Oct 15 '22 13:10

Morrislgn


2 Answers

Using Gestures in Windows Mobile 6.5

try this

like image 194
Alessandro Annini Avatar answered Nov 15 '22 05:11

Alessandro Annini


Why don't use "DisableGestures" function from coredll.dll ?

[DllImport("coredll.dll")]
private static extern bool DisableGestures(IntPtr p_ipHwnd, UInt64 p_uiTGFflags, uint p_uiScope);

private const UInt64 TGF_GID_BEGIN        = 0x0000000000000002;
private const UInt64 TGF_GID_END          = 0x0000000000000008;
private const UInt64 TGF_GID_PAN          = 0x0000000000000100;
private const UInt64 TGF_GID_ROTATE       = 0x0000000000000200;
private const UInt64 TGF_GID_SCROLL       = 0x0000000000001000;
private const UInt64 TGF_GID_HOLD         = 0x0000000000002000;
private const UInt64 TGF_GID_SELECT       = 0x0000000000004000;
private const UInt64 TGF_GID_DOUBLESELECT = 0x0000000000008000;
private const UInt64 TGF_GID_LAST         = 0x0000000000008000;
private const UInt64 TGF_GID_MAX          = 0x8000000000000000;
private const UInt64 TGF_GID_ALL          = 0xFFFFFFFFFFFFFFFF;

private const uint TGF_SCOPE_WINDOW  = 0x0000;
private const uint TGF_SCOPE_PROCESS = 0x0001;

public frmMain()
{
  InitializeComponent();

  DisableGestures(null, TGF_GID_ALL, TGF_SCOPE_PROCESS);
}

You can also try to disable gestures for only one window.

like image 28
Jean-Daniel Gasser Avatar answered Nov 15 '22 04:11

Jean-Daniel Gasser