WPF - Debuging touch event without touchscreen? -
i wondering way debug/test touch event in wpf without touchscreen? have vs2013 , on windows stre app can run simulator or connect remote device test touch cant find options in wpf aplication.
regards kamil
if have touch device:
you need use remote debugger.
my example minimum settings in project:
1) on remote machine install remotedebugger vs2013. run it.
2) create directories project's files on main machine. (example: c:\projs\proj1\bin\debug). share dir (example: share "debug" "proj1debug") read , write.
2) in project's settings switch on "use remote machine" (in "debug") , enter remote machine name.
3) , add in post-build event
copy "$(targetdir)" "\\remotemachinename\proj1debug" /y
that's all.
if haven't device - use multitouchvista
Comments
Post a Comment