> Forums > Windows Mobile

R

Resistive Screen Multi Touch SDK Demo

Erstellt
Aug. '10
letzte Antwort Antwort
1
Aufrufe
5.3T
2
„Gefällt mir“
Abos
Noch keine
Fr., 06. August, 2010 um 3:45
#1



Link: http://forum.xda-developers.com/showthread.php?t=593290


Download DualTouch.zip (89.82 kB, 0 mal)
MD5: 7b28d522d4703904d0aa44f75477ebe4
SHA1: 8137a7b1155bc4483dd193f7b7aed104c6cf52f6
CRC32: 335d1607


Der Mensch ist ein naiver Tourist mit einem abgelaufenem Visum für den Planeten Erde ..

Fr., 06. August, 2010 um 3:46
#2

Zitat:
How to use the SDK!
create an instanse of the class,
the object wich will detect the mouse clicks MUST have mouse down, up and move.


for example in the demo above the code is as following and i use picturebox

Code:
publicpartialclassForm1 : Form
{
DualTouchSDK.DualTouchSDK SDK = new DualTouchSDK.DualTouchSDK();
privatevoid Form1_Load(object sender, EventArgs e)
{
SDK.Zooming += new DualTouchSDK.DualTouchSDK.MultiTouchEventHandler(SDK_Zooming);
}
void SDK_Zooming(DualTouchSDK.MultiTouchEventArgument e)
{
// Do the zooming here e.ZoomRatio returns a value which is the % of the zoom < 1 = zoom in, > 1 zoom out.
}
privatevoid pictureBox1_MouseDown(object sender, MouseEventArgs e)
{
SDK.SetMouseDown(e.X, e.Y);
}
privatevoid pictureBox1_MouseMove(object sender, MouseEventArgs e)
{
SDK.SetMouseMove(e.X, e.Y);
}
privatevoid pictureBox1_MouseUp(object sender, MouseEventArgs e)
{
SDK.MouseUp();
}
}



Der Mensch ist ein naiver Tourist mit einem abgelaufenem Visum für den Planeten Erde ..

> Forums > Windows Mobile

Du hast bereits für diesen Post abgestimmt...

;-)



Logo https://t.ress.at/X9LZ2/


Ähnliche Themen:











Top