Peter Daukintis Recently I had a need to reacquaint myself with the latest Kinect SDK. v1.6 has just been released and is downloadable from here Kinect SDK. So I downloaded it and started playing around with some code and it…
Tag: metro
Streamsocket example c# metro
Peter Daukintis This is a very basic example of socket communication in a c# metro-style application using StreamSocket and StreamSocketListener. It mirrors the Simple StreamSocket example in msdn here http://code.msdn.microsoft.com/windowsapps/StreamSocket-Sample-8c573931 which is coded in c++ and javascript but no c#.…
metro c#–simple transform using touch
Well, this turned out to be pretty easy …… The aim was to carry out a simple image transform with touch; so pinch zoom, translate and rotate. This is how the code turned out. First, the xaml, which is an…
metro c# webapi client
Peter Daukintis For my own purposes I wanted to create a test application which I can use as a test-bed to experiment with user interface aspects of Metro. I decided to create a simple REST web service and make create/read/update/delete…
datatemplateselector winrt
by Peter Daukintis Having used DataTemplateSelectors previously with WPF and similar on Silverlight/Windows Phone I decided to check out whether they work the same in a xaml Metro application. It turns out to be pretty much the same (barring a…