wpf touch application
how to create a touch application in .net. can we make a windows touch application using any .net supported language?if then wat is the process and wat r the modules required... any on please answer my question.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
CrishPosted Dec 13, 2010, 5:13 AM
You can refer this below code.If you want to get more detail about wpf touch application than just go for this below link.
http://blogs.msdn.com/b/llobo/archive/2009/12/07/wpf-touch-basics.aspx
Example:
public partial class TouchableThing : UserControl
{
private Point lastTouchDownPoint;
public TouchableThing()
{
InitializeComponent();
this.TouchDown += new EventHandler<TouchEventArgs>(TouchableThing_TouchDown);
this.TouchMove += new EventHandler<TouchEventArgs>(TouchableThing_TouchMove);
}
private void TouchableThing_TouchDown(object sender, TouchEventArgs e)
{
}
private void TouchableThing_TouchMove(object sender, TouchEventArgs e)
{
}
}