I don't currently have a touch screen.
Can anyone tell me what I need to do to my app to make it touch compatible ?
Is touch taken care of by mousedown event ?
n.Wright
You can use the simulator to test your app for touch.
Many events have been consolidated into Pointer events (PointerEntered, PointerMoved, PointerPressed etc.) that work for mouse, touch or stylus.
That works great thanks.