<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Comment Feed for Channel 9 - Setting up your Development Environment</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment/RSS"></atom:link>
	<image>
		<url>http://ak.channel9.msdn.com/ch9/b504/6db412e7-8927-47cc-8995-9fea003cb504/SettingUpYourDevelopmentEnvironment_100_ch9.jpg</url>
		<title>Channel 9 - Setting up your Development Environment</title>
		<link></link>
	</image>
	<description>In setting up your development environment we&#39;ll discuss the following topics: The basics of using the Managed API The key developer resources to use in your application like the KinectWpfViewers that ship Kinect SDK Kinect Explorer sample and the Coding4Fun Toolkit for skeletal scaling that will be used in later Quickstart videos. Demos of how to manage and connect to a Kinect using the KinectSensors collection and using the KinectSensorChooser WPF control &amp;nbsp; Notes: Please make sure to use the Quickstart Samples as in the video we did not include two code checks that you&#39;ll want to add to your application Add a check for null on newSensor private void kinectSensorChooser1_KinectSensorChanged(object sender, DependencyPropertyChangedEventArgs e)
        {
            KinectSensor oldSensor = (KinectSensor)e.OldValue;

            StopKinect(oldSensor); 

            KinectSensor newSensor = (KinectSensor)e.NewValue;
         
           //NOTE: Add this check for a null sensor
            if (newSensor == null)
            {
                return; 
            }

            //register for event and enable Kinect sensor features you want
            newSensor.AllFramesReady &amp;#43;= new EventHandler&amp;lt;AllFramesReadyEventArgs&amp;gt;(newSensor_AllFramesReady);
            newSensor.ColorStream.Enable(ColorImageFormat.RgbResolution640x480Fps30);
            newSensor.DepthStream.Enable(DepthImageFormat.Resolution640x480Fps30); 
            newSensor.SkeletonStream.Enable();


            try
            {
                newSensor.Start(); 
            }
            catch (System.IO.IOException)
            {
                //another app is using Kinect
                kinectSensorChooser1.AppConflictOccurred();                 
            }


        }
&amp;nbsp; &amp;nbsp; Add a check to see if the sensor is running and if the AudioSource is null             if (sensor != null)
            {
               //NOTE: Add this code
                if (sensor.IsRunning)
                {
                    sensor.Stop();
                    if(sensor.AudioSource != null)
                   {
                       sensor.AudioSource.Stop();
                   }
                }
            }
 ResourcesDownload the Kinect for Windows SDK Download the Quickstart slides and samples </description>
	<link></link>
	<language>en</language>
	<pubDate>Wed, 22 May 2013 22:36:15 GMT</pubDate>
	<lastBuildDate>Wed, 22 May 2013 22:36:15 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Is there a &#39;cheat sheet&#39; version of these videos - find them very time consuming to go though - keep having to pause and rewind to get details - would rather go through a written step-by-step guide.<br><br>Thanks.<br><p>posted by Tim</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634637289606032448</link>
		<pubDate>Wed, 01 Feb 2012 21:36:00 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634637289606032448</guid>
		<dc:creator>Tim</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Coding4Fun Toolkit link is not working. Please fix.<p>posted by Varma</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634637524217721969</link>
		<pubDate>Thu, 02 Feb 2012 04:07:01 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634637524217721969</guid>
		<dc:creator>Varma</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p>@<a href="/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634637524217721969">Varma</a>: Thanks for the heads up, the link is now fixed, it should point to <a href="http://c4fkinect.codeplex.com/">http://c4fkinect.codeplex.com/</a>&nbsp;</p><p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634637629808706812</link>
		<pubDate>Thu, 02 Feb 2012 07:03:00 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634637629808706812</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p>Thanks for this resource! I really enjoy watching this <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-2.gif?v=c9' alt='Big Smile' /></p><p>&nbsp;I have a question about this section.Is this the feature for windows kinect? When I test it in Xbox kinect, UnhandeledException Problem is occured at the <strong>sensor.AudioSource.Stop();</strong><br>And IR emitter is still working after the debugging mode is ended.</p><p>Is there any solution to solve this problem? Anyways, Thanks!</p><p>posted by myChan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634637659056057665</link>
		<pubDate>Thu, 02 Feb 2012 07:51:45 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634637659056057665</guid>
		<dc:creator>myChan</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p>@<a href="/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634637659056057665">myChan</a>:Hey myChan, were you using the quickstart samples or typing the code as-is? We did add two notes that weren't in the video but *are* in the quickstart samples (see above). If you're still getting an exception with these two additions, let me know and I'll try to repro this.</p><p>&nbsp;</p><p>Cheers!</p><p>-Dan</p><p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634638101829596302</link>
		<pubDate>Thu, 02 Feb 2012 20:09:42 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634638101829596302</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p>@<a href="/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634638101829596302">Dan</a>: Thanks for replying.But still not working... I found the difference between the sample and mine is</p><p><strong>using Coding4Fun.Kinect.Wpf;</strong> and <strong>if(sensor.IsRunning){}</strong> section.</p><p>Of course, the execution is fine. but when I unplug this(I try the way both usb cable and power adapter), NullreferenceException Ploblem is occured. Oh, and I got something to ask you. Is the usb cable using the main powerline of Xbox Kinect? I unplugged the usb cable, The Kinect`s power turned off and VS2010 got the error.&nbsp;</p><p>Anyways, I`ll try it as possible as i can. Thanks!&nbsp;</p><p>posted by myChan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634638296469350222</link>
		<pubDate>Fri, 03 Feb 2012 01:34:06 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634638296469350222</guid>
		<dc:creator>myChan</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p>@<a href="/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634638296469350222">myChan</a>:Try the suggested code at the top of the file and tell me if you still get the exception. Thanks, -Dan</p><p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634639047369308262</link>
		<pubDate>Fri, 03 Feb 2012 22:25:36 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634639047369308262</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p>@<a href="/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634639047369308262">Dan</a>:Wow! It worked. Thanks a lot! I appreciate that.</p><p>posted by myChan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634639520811015341</link>
		<pubDate>Sat, 04 Feb 2012 11:34:41 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634639520811015341</guid>
		<dc:creator>myChan</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Dan - For someone who has little programming experience &#40;vb script&#41;, what programming language should I be focusing on learning to bring me up to speed with the programming here&#63;  Would it be Microsoft Visual Studio .NET&#63;  If so do you recommend any online training resources&#63;  Thanks&#33;<p>posted by Dave509</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634639732859396426</link>
		<pubDate>Sat, 04 Feb 2012 17:28:05 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634639732859396426</guid>
		<dc:creator>Dave509</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p>@<a href="/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634639732859396426">Dave509</a>:I know you asked Dan, but...</p><p>From my seat, I'd suggest C#, as there are more examples and samples for it. To learn C#, check out, <a href="http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners">http://channel9.msdn.com/Series/C-Sharp-Fundamentals-Development-for-Absolute-Beginners</a></p><p>That said, VB.Net is fully supported and viable&nbsp;for the Kinect and there's more samples and examples on the way. To get going with VB.Net, check out, <a href="http://channel9.msdn.com/Series/Visual-Basic-Development-for-Absolute-Beginners">http://channel9.msdn.com/Series/Visual-Basic-Development-for-Absolute-Beginners</a></p><p>Another nice learning/training resource is <a href="http://msdn.microsoft.com/en-us/VS2010TrainingCourse">http://msdn.microsoft.com/en-us/VS2010TrainingCourse</a></p><p>Hope this helps.</p><p>posted by gduncan411</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634639743981598179</link>
		<pubDate>Sat, 04 Feb 2012 17:46:38 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634639743981598179</guid>
		<dc:creator>gduncan411</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[&#64;gduncan411&#58;  Thanks for the quick response and great information.  I will take your advice and start with C&#35;.  I am hoping that this will make it easier for me to begin developing for the Kinect.<p>posted by Dave509</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634639773364158999</link>
		<pubDate>Sat, 04 Feb 2012 18:35:36 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634639773364158999</guid>
		<dc:creator>Dave509</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Is it possible to use the Kinect with a Metro Style Application in Windows 8 &#63;<p>posted by Yassine</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634639819932208189</link>
		<pubDate>Sat, 04 Feb 2012 19:53:13 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634639819932208189</guid>
		<dc:creator>Yassine</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Hi,<br><br>I am already having a prblem getting my Kinect sensor to be recognized. I followed your steps until starting the first debug session, but I am not getting a sensor &#40;KinectSensor.KinectSensors.Count is 0&#41;. I am using an old Xbox360 sensor which is installed properly and recognized by Windows itself &#40;at least I see the NUI Motor but nothing more&#41;. The SDK is installed, the references to the project are set and actually everything seems to be correct.<br><br>Is there something different with the old Kinect sensor the be aware of&#63;<br><br>Thanks.<p>posted by fdomig</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634641644321048894</link>
		<pubDate>Mon, 06 Feb 2012 22:33:52 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634641644321048894</guid>
		<dc:creator>fdomig</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Do u have a more up to date demo, the code is based on the beta sdk, looking for demos related to the Feb 1st release, the libraries have different names ie. using microsoft.kinect vs microsoft.research.kinect etc. there is no documentation of the changes, i&#39;m assumming this is a new naming convention etc.<p>posted by Maurice</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634643196008920464</link>
		<pubDate>Wed, 08 Feb 2012 17:40:00 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634643196008920464</guid>
		<dc:creator>Maurice</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[&#64;Yassine&#58; You can code Metro apps in various languages, and C&#35; is one of them.<p>posted by Marco Shaw</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634643521315297517</link>
		<pubDate>Thu, 09 Feb 2012 02:42:11 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634643521315297517</guid>
		<dc:creator>Marco Shaw</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p>I have been trying out my new Kinect SDK with the VB code samples. I finally found updated samples for the new SDK. I can get the programs too build and run but I cannot edit the forms. I get error:</p><p>Error&nbsp;1&nbsp;The type 'my:KinectColorViewer' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built.&nbsp;C:\Users\vsingh\Documents\Kinect\KinectforWindowsSDKV1\KinectforWindowsSDKV1\3.Camera Fundamentals\CameraFundamentalsVB\CameraFundamentals\MainWindow.xaml&nbsp;8&nbsp;10&nbsp;CameraFundamentals Error&nbsp;2&nbsp;The type 'my:KinectSensorChooser' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built.&nbsp;C:\Users\vsingh\Documents\Kinect\KinectforWindowsSDKV1\KinectforWindowsSDKV1\3.Camera Fundamentals\CameraFundamentalsVB\CameraFundamentals\MainWindow.xaml&nbsp;9&nbsp;10&nbsp;CameraFundamentals</p><p>I&nbsp;am migrating from VB6 ! And I&nbsp;assume I am missing the references to thesae two components but how do you set that ? Thanks for&nbsp;the nice tutorial videos.&nbsp;</p><p>posted by DrWave</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634643845344598539</link>
		<pubDate>Thu, 09 Feb 2012 11:42:14 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634643845344598539</guid>
		<dc:creator>DrWave</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p>@<a href="/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634643196008920464">Maurice</a>:I'm not sure what you're talking about, all of the demos for this series of Quickstarts are for the Feb 1st SDK. What specific demos don't work with the Feb 1st release?</p><p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634644095024185875</link>
		<pubDate>Thu, 09 Feb 2012 18:38:22 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634644095024185875</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p>@<a href="/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634641644321048894">fdomig</a>:If, under Device Manager, you see &quot;NUI Motor&quot;, then you have the wrong driver. Check your add remove programs and uninstall any other drivers you may have (Kinect Beta 2, PrimeSense, etc), and try re-installing the Kinect SDK 1.0. I just tested this with an Xbox 360 Kinect and I see the following in Device Manager</p><ul><li>Microsoft Kinect Audio Array Control </li><li>Microsoft Kinect Camera </li><li>Microsoft Kinect Device </li><li>Microsoft Kinect Security Control </li></ul><p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634644097970991770</link>
		<pubDate>Thu, 09 Feb 2012 18:43:17 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634644097970991770</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p>@<a href="/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634639819932208189">Yassine</a>:The Kinect SDK is currently designed only to work with desktop applications, not Metro-style applications. One option is to get Kinect data over the network as network data can be consumed by a Metro Style application. For an example project, check out the Kinect Service project - <a href="http://kinectservice.codeplex.com/ ">http&#58;&#47;&#47;kinectservice.codeplex.com&#47;&#160;</a> </p><p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634644099424287935</link>
		<pubDate>Thu, 09 Feb 2012 18:45:42 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634644099424287935</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[&#64;Dr.Wave&#58; were you able to solve the problem&#63; I have the same problem with the samples. Error 1 The type &#39;my&#58;KinectColorViewer&#39; was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built. C&#58;&#92;Users&#92;vsingh&#92;Documents&#92;Kinect&#92;KinectforWindowsSDKV1&#92;KinectforWindowsSDKV1&#92;3.Camera Fundamentals&#92;CameraFundamentalsVB&#92;CameraFundamentals&#92;MainWindow.xaml 8 10 CameraFundamentals Error 2 The type &#39;my&#58;KinectSensorChooser&#39; was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been <br><br>I see this in C&#35;, can someone please help <p>posted by Hari</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634644891103169851</link>
		<pubDate>Fri, 10 Feb 2012 16:45:10 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634644891103169851</guid>
		<dc:creator>Hari</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p>@<a href="/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634644891103169851">Hari</a>: He and I were working it out on a different post... Check out <a href="http://channel9.msdn.com/coding4fun/kinect/When-deploying-Kinect-apps-ensure-the-runtime-components-and-device-are-ready#c634644769725497729">http://channel9.msdn.com/coding4fun/kinect/When-deploying-Kinect-apps-ensure-the-runtime-components-and-device-are-ready#c634644769725497729</a></p><p>posted by gduncan411</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634644899517464618</link>
		<pubDate>Fri, 10 Feb 2012 16:59:11 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634644899517464618</guid>
		<dc:creator>gduncan411</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p>@<a href="/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634644891103169851">Hari</a>: In Visual Studio, try clicking the Build option first. Once you click Build, the references should show up in the right places.</p><p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634646225133431097</link>
		<pubDate>Sun, 12 Feb 2012 05:48:33 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634646225133431097</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p>Dan the videos are really nice, I really appericiate your work from the kinect quick start videos using the nui and now sdkv1 <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-2.gif?v=c9' alt='Big Smile' />, I am happy and with your videos my final year project for my under graduation i will be showing my college kinect application.</p><p>Dan, can we use kinect to remotely access desktop pc of windows 7, is it possible through internet without using azure services, please do post a link as to help in this situation <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-2.gif?v=c9' alt='Big Smile' /></p><p>thank you DAN</p><p>posted by seggemu</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634647222855889826</link>
		<pubDate>Mon, 13 Feb 2012 09:31:25 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634647222855889826</guid>
		<dc:creator>seggemu</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Hello,after 12 minutes 52 seconds in the video,what operation does the demonstrator take to pop the mainwindow&#38;&#35;63&#59; then,after he says&#38;&#35;34&#59;we don&#38;&#35;39&#59;t see anything ,that&#38;&#35;39&#59;s a good sign&#38;&#35;34&#59;,what shortcut key does the demonstrator press to make the kinect sign appear in the blank mainwindow suddenly&#38;&#35;63&#59;thank you&#38;&#35;126&#59;&#38;&#35;126&#59;<p>posted by vivian</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634647408146347937</link>
		<pubDate>Mon, 13 Feb 2012 14:40:14 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634647408146347937</guid>
		<dc:creator>vivian</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[I was following along with the video and I was having a problem getting the KinectSensorChooser on the window. I know how to add something to a window, its just that it will not allow me to drag it onto the window. I decided to just run the Quickstart Sample and it gives me the following&#58;<br><br>Error 1 The type &#39;my&#58;KinectSensorChooser&#39; was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built.&#9;<br><br>I attempted to delete the Microsoft.Samples.Kinect.WpfViewers project, re-add it and re-add the resources and rebuild but I get the same error.<br><br>Thanks,<br>Ryan<p>posted by ryanrs</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634647494802517444</link>
		<pubDate>Mon, 13 Feb 2012 17:04:40 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634647494802517444</guid>
		<dc:creator>ryanrs</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[I figured out my problem.<br><br>1. When I downloaded the Quickstart Samples before I extracted the zip I needed to right-click and click unblock &#40;on the general tab&#41;. This didn&#39;t get rid of the error and I still could not drag and drop the KinectSensorChooser<br><br>2. I needed to run the project outside of my user directory &#40;I&#39;m on a university computer&#41; so once I got out of my user directory I could then drag and drop the KinectSensorChooser<br><br>Hope this helps someone else<br>Ryan<p>posted by ryanrs</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634647620710773616</link>
		<pubDate>Mon, 13 Feb 2012 20:34:31 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634647620710773616</guid>
		<dc:creator>ryanrs</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Comment Permalink" href="/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634647222855889826">3 days&nbsp;ago</a>, <a href="/Niners/seggemu">seggemu</a> wrote</p><p>Dan, can we use kinect to remotely access desktop pc of windows 7, is it possible through internet without using azure services, please do post a link as to help in this situation <img src="http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-2.gif?v=c9" alt="Big Smile"></p><p>thank you DAN</p><p></p></div></blockquote><p></p><p>@<a href="/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634647222855889826">seggemu</a>: If I understood you correctly, you want to be able to access Kinect data (like color, depth, skeletal, and audio data) on a remote machine. The good news is that we have solved about half of the problem. Brian Peek, from our Coding4Fun team built KinectService - <a href="http://kinectservice.codeplex.com">http://kinectservice.codeplex.com</a> that exposes Kinect data via sockets so that you can see Kinect data via a network using sockets. As one example, he shows how you can run the Kinect Service and see the live video feed on a Windows Phone. The challenge here is that the data is exposed via sockets so you'll need a way to see that data that will work well across the Internet, through firewalls, and so on. For some scenarios, you may be able to just open up a port on your firewall and mapping it to the port Kinect Service uses for communication. But you should be aware that there is no explicit security for this so someone who knows that port number could also connect and watch your feed. Using Windows Azure (or some other intermediary) is an option too, but it all depends on your needs. Hope this helps</p><p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634650084721763528</link>
		<pubDate>Thu, 16 Feb 2012 17:01:12 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634650084721763528</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p>@<a href="/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634647408146347937">vivian</a>:</p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Comment Permalink" href="/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634647408146347937">3 days&nbsp;ago</a></p><p>Hello,after 12 minutes 52 seconds in the video,what operation does the demonstrator take to pop the mainwindow&amp;#63; then,after he says&amp;#34;we don&amp;#39;t see anything ,that&amp;#39;s a good sign&amp;#34;,what shortcut key does the demonstrator press to make the kinect sign appear in the blank mainwindow suddenly&amp;#63;thank you&amp;#126;&amp;#126;</p><p></p></div></blockquote><p></p><p>Hi Vivian,</p><p>Good question and sorry if that wasn't clear. If the KinectSensorChooser is running correctly, then the Kinect image should *not* appear. To make it appear, I didn't hit a shortcut key, I simply unplugged the Kinect's USB cord from my laptop.</p><p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634650087348572478</link>
		<pubDate>Thu, 16 Feb 2012 17:05:34 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634650087348572478</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Hi Dan,<br>Thanks for the videos. I have a problem when I&#39;m running the example, I got a message saying System.NotImplementedException and that the file &#39;MainWindow.xaml.cs&#39; is not located. Why do I have this error&#63; did I miss something&#63;<br><br>Thanks&#33;<p>posted by mavegap</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634651836163745928</link>
		<pubDate>Sat, 18 Feb 2012 17:40:16 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634651836163745928</guid>
		<dc:creator>mavegap</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Hi Dan,<br><br>Thanks for your reply. Removing the SDK beta driver driver and installation of the new one fixed the problem and I am able to start developing now. Great&#33;<br><br>Thanks,<br>Franky<p>posted by fdomig</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634652542446999197</link>
		<pubDate>Sun, 19 Feb 2012 13:17:24 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634652542446999197</guid>
		<dc:creator>fdomig</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p>@<a href="/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634651836163745928">mavegap</a>:Which example are you working on and where is the NotImplementedException thrown?</p><p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634656467331776972</link>
		<pubDate>Fri, 24 Feb 2012 02:18:53 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634656467331776972</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p>Hi Dan,</p><p>Have a question.&nbsp; Everything was going fine until 9:50 into your second video where you casually right click and add a &quot;KinectSensorChooser&quot; from the the toolbox.</p><p>I don't see this component, and if I chose View All I see it, but its greyed out and I can't add it?</p><p>Any ideas?&nbsp; I have downloaded the SDK, installed it, unpacked the Kinect Explorer files and added both the WPF project to my solution as well as adding a reference to my other project.</p><p>No matter what I do I just can't see to get access to this.</p><p>&nbsp;</p><p>Craig</p><p>posted by Molcavian</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634660582403173672</link>
		<pubDate>Tue, 28 Feb 2012 20:37:20 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634660582403173672</guid>
		<dc:creator>Molcavian</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p>Well I sorted it out.&nbsp;</p><p>It has to do with a little quirk in VS2010 / Windows, if you have files you are referencing buried far down in a folder structure which is many levels deep you can have issues.&nbsp; VS can't copy with include or reference pathds that exceed 260 characters in length.&nbsp; As it couldn't build the supporting Kinect Explorer WPF project it couldn't have access to the KinectSensorChooser.&nbsp; As soon as you move your VS Solution to a folder closer to the root of your hard drive it builds np!.</p><p>I have found this series excellent, but some basic steps are missing and assumptions made about knowledge.&nbsp; For the total novice I have written a little guide to Getting, Installing and Configuration your system, both Hardware &amp; Software ready for development with Windows Kinect Sensor, SDK V 1.0 and VS2010.</p><p><a href="http://www.21stcenturyclassroom.co.cc/">http://www.21stcenturyclassroom.co.cc/</a></p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>posted by Molcavian</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634662205139236027</link>
		<pubDate>Thu, 01 Mar 2012 17:41:53 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634662205139236027</guid>
		<dc:creator>Molcavian</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Hi Dan,<br> I&#39;d like to thank you for your great effort . I want to ask about      the ability of defining the 3d objects and controlling them. Can we use Xna&#43;kinect for that purpose &#63;&#63;&#63;<br><br> <br>Thanks in advance.<br>Muhammad<p>posted by Muhamad Badawy</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634662403437577647</link>
		<pubDate>Thu, 01 Mar 2012 23:12:23 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634662403437577647</guid>
		<dc:creator>Muhamad Badawy</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[I want to reproduce your samples in Windows Forms.<br>Is there any chance to get the toolbox controls from Microsoft.Samples.Kinect.WpfViewers like the KinectSensorChooser also for WinForms&#63;<p>posted by Nina</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634664106713007264</link>
		<pubDate>Sat, 03 Mar 2012 22:31:11 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634664106713007264</guid>
		<dc:creator>Nina</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Hi, first I really appreciate your work here and this great series that make is so easy for developers to develop KINECT apps but I have a small question since am still new to the visual studio, how can I add the KINECT reusable controllers that you have used in the video, thank you in advance &#58;&#41; <p>posted by Ahmed Al Mowalad</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634666213133855710</link>
		<pubDate>Tue, 06 Mar 2012 09:01:53 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634666213133855710</guid>
		<dc:creator>Ahmed Al Mowalad</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Hi, I want to ask if someone would be kind enough to point me where I can find the complete reference for the kinect sdk library&#63; Thanks<p>posted by Laurence</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634673262430892348</link>
		<pubDate>Wed, 14 Mar 2012 12:50:43 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634673262430892348</guid>
		<dc:creator>Laurence</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Hi, I probably sound like a total newbie asking this, but, well I am. I noticed in your videos when you typed in &#34;if &#40;&#34; it automatically added the second bracket, and once you started typing it, the &#125; below was changed to &#123; so you could write the next line. Mine doesn&#39;t do that - how comes&#63; Have you downloaded something which edits the &#40;&#41; and &#123;&#125; as you go&#63;<br><br>Sorry if this is a dumb question, I am a total beginner and need to use kinect for my degree show in May so I&#39;m trying to learn all this as fast as I can&#33;<br><br>Amanda<p>posted by Amanda</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634678340801135558</link>
		<pubDate>Tue, 20 Mar 2012 09:54:40 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634678340801135558</guid>
		<dc:creator>Amanda</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[For any complete beginners out there who are trying this tutorial and get stuck at the KinectSensorChooser bit because it looks greyed out&#58;<br><br>I tried doing what everyone else said on this list and nothing worked. I spent at least an hour worrying over it and scouring google for answers only to stumble upon it myself. It&#39;s the stupidest thing ever and it makes me look like a total lemon for not realising but for all the other lemons out there here&#39;s what I missed&#58;<br><br>First, go to Debug&#62;Build Solution. If theres any errors, follow the tips the guys above gave you. If theres NO errors but it looks grey you might have missed the one lil thing I missed&#58; I didn&#39;t notice Dan clicked on the MainWindow.xaml&#42; tab. Voila, no longer grey.<br><br>Stupidest thing every but just to save anyone with this problem a few hours of worry, there it is&#33;<br><br>In regards to my other post, I have been writing the code using tab and enter but I really would like to have it auto-complete or whatever the term is, so if anyone knows how to get it to do that please let me know&#33;<br><br>Thanks Dan for your tutorials, they have been really good so far. Lots of little things missed out for beginners like me but then you said it&#39;s not geared at beginners, so...<br><p>posted by Amanda</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634678484944516563</link>
		<pubDate>Tue, 20 Mar 2012 13:54:54 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634678484944516563</guid>
		<dc:creator>Amanda</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Hi, <br><br>Thanks for your tutorials Dan&#33; I have followed everything up to 13&#58;00&#58;00 and it was fine, but when I pressed Run it said that there was an error with newsensor.Stop. I added in the extra coding you put under the videos as you told someone above to do, but now when I press F5 it says &#34;The name newSensor_AllFramesReady does not exist in current context&#34;<br><br>Im pretty sure I followed everything properly in the tutorial, and looking around on google everyone else seems to use this name just fine.<br><br>It seems essential to the program and it just won&#39;t work, I have no idea what to do&#33;<br><br>I also don&#39;t know what you mean when you say &#34;Please use the Quickstart Tutorials&#34; I thought that was what I was doing by following this... What do you mean&#63;&#63;<br><br>Please can you or anyone else on here help, I would be so grateful&#33;&#33;<br><p>posted by Sketchy</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634678575271555921</link>
		<pubDate>Tue, 20 Mar 2012 16:25:27 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634678575271555921</guid>
		<dc:creator>Sketchy</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Solved&#33;<br><br>http&#58;&#47;&#47;stackoverflow.com&#47;questions&#47;9790701&#47;can-anyone-help-resolve-newsensor-allframesready-does-not-exist-in-current-cont<br><br>If anyone has this problem, just make sure you go through all your code and change ALL &#34;_sensor&#34; references to &#34;newSensor&#34; - thats why it said to me that newSensor_AllFramesReady didn&#39;t exist, because it was trying to find the later instruction<br>void newSensor_AllFramesReady&#40;object sender, AllFramesReadyEventArgs e&#41;  <br>&#123;<br>but all it could find was void _sensor_AllFramesReady&#40;object sender, AllFramesReadyEventArgs e&#41;  <br>&#123;<br><br>Check all your code uses newSensor, and it should run properly&#33;<p>posted by Sketchy</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634678857203201125</link>
		<pubDate>Wed, 21 Mar 2012 00:15:20 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634678857203201125</guid>
		<dc:creator>Sketchy</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Comment Permalink" href="/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634662403437577647">Mar 01, 2012 at 3:12&nbsp;PM</a></p><p>...&nbsp;I want to ask about the ability of defining the 3d objects and controlling them. Can we use Xna&#43;kinect for that purpose ???<br>&nbsp;<br></p></div></blockquote><p></p><p>There's nothing built into Kinect for 3D object manipulation or identification, but&nbsp;here's an example where&nbsp;3D objects were manipulated in XNA using your hand position - &nbsp;<a href="http://kinectearthmove.codeplex.com/">http://kinectearthmove.codeplex.com/</a>. I don't know if this has been updated to Kinect SDK 1.0, but this at least gives you a starting point.</p><p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634686346922941206</link>
		<pubDate>Thu, 29 Mar 2012 16:18:12 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634686346922941206</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p>@<a href="/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634666213133855710">Ahmed Al Mowalad</a>: With a new project open, in the Solution Explorer, right click on the Solution Name (the first item in the tree view on the right pane that lists all of the files in your project) and select add Existing Project and select the WPF Viewers project that is included in the SDK or included in the Kinect Quickstarts. you may need to click Build afterwards.</p><p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634686356814264256</link>
		<pubDate>Thu, 29 Mar 2012 16:34:41 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634686356814264256</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p></p><blockquote><div class="quoteText"><p></p><p><a class="permalink" title="Comment Permalink" href="/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634673262430892348">Mar 14, 2012 at 5:50&nbsp;AM</a></p><p>Hi, I want to ask if someone would be kind enough to point me where I can find the complete reference for the kinect sdk library? Thanks</p><p></p></div></blockquote><p></p><p>@<a href="/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634673262430892348">Laurence</a>:It's included when you install the SDK in a CHM doc file name <strong>Kinect SDK documentation</strong></p><p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634686357764653927</link>
		<pubDate>Thu, 29 Mar 2012 16:36:16 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634686357764653927</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[I&#39;m trying to add the KinectSensorChooser to the main window, but there is no such a object in my Toolbox. I already added a reference to the Microsoft.Samples.Kinect.WpfViewers dll, but I don&#39;t see the object in my toolbox.<br><br>The only object that is present is KinectSkeleton. And oddly it&#39;s the only code under the Microsoft.Samples.Kinect.WpfViewers that is a .cs file. I guess the problem is that the other objects are of the type .xaml. But I can&#39;t figure out what. Does anyone have a good idea of what&#39;s going on&#63;<p>posted by Giuliano Giacaglia</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634686622617318530</link>
		<pubDate>Thu, 29 Mar 2012 23:57:41 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634686622617318530</guid>
		<dc:creator>Giuliano Giacaglia</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Somehow now the KinectSensorChooser is now in the Toolbox.. This is odd.<p>posted by Giuliano Giacaglia</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634687236742037717</link>
		<pubDate>Fri, 30 Mar 2012 17:01:14 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634687236742037717</guid>
		<dc:creator>Giuliano Giacaglia</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Hi<br><br>My application crashed when I unplugged the connect to test the program and when I try to reconnect the kinect to the PC, the kinect green light does NOT come on. If I run the program again, it says &#34;plug my power cord in&#34;. The PC does not recognize kinect unless I restart the it. I think there must be some process lingering on the computer that needs to be killed. Do you know how to overcome this error without a PC restart.<br><br>Thank you<p>posted by Hemanth</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634693594149868932</link>
		<pubDate>Sat, 07 Apr 2012 01:36:54 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634693594149868932</guid>
		<dc:creator>Hemanth</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Hi Dan,<br><br>Thanks for the tutorials&#33; However I&#39;ve run into a problem&#58; I followed all your steps and everything worked just fine until I unplugged the Kinect sensor. I got a &#34;NullReferenceException was Unhandled&#34; error.<br><br>Any ideas&#63;<br><br>Thanks Dan.<p>posted by Eric BD</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634696322512419351</link>
		<pubDate>Tue, 10 Apr 2012 05:24:11 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634696322512419351</guid>
		<dc:creator>Eric BD</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Hi Dan,<br><br>I managed to solve my own problem. Yay&#33; After trying in vain to get the code in the video to work, regarding the newSensor object, I decided to try the following, and it worked like a charm&#58;<br><br>KinectSensor newSensor &#61; &#40;KinectSensor&#41;e.NewValue&#59;<br>if&#40;newSensor &#33;&#61; null&#41;<br>  &#123;<br>     newSensor.ColorStream.Enable&#40;&#41;&#59;<br>     newSensor.DepthStream.Enable&#40;&#41;&#59;<br>     newSensor.SkeletonStream.Enable&#40;&#41;&#59;<br>     newSensor.AllFramesReady &#43;&#61; <br>          new EventHandler&#60;AllFramesReadyEventArgs&#62;&#40;_sensor_AllFramesReady&#41;&#59;<br><br>     newSensor.Start&#40;&#41;&#59;<br>  &#125;<br><br>The KinectSensorChooser showed up when I unplugged the cable, and showed the sensor as &#34;Initializing...&#34; when I plugged the cable back in&#33;<br><br>I hope this helps somebody else who was having similar problems to mine.<br><br>Thanks for the videos, Dan.<p>posted by Eric BD</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634697143239623106</link>
		<pubDate>Wed, 11 Apr 2012 04:12:03 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634697143239623106</guid>
		<dc:creator>Eric BD</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[&#94;&#94; Thanks Dan for the code. Really appreciate it. Finally got the next part in the video to work. &#58;&#41;<p>posted by Tom</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634697646530427483</link>
		<pubDate>Wed, 11 Apr 2012 18:10:53 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634697646530427483</guid>
		<dc:creator>Tom</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[&#94;&#94; Sorry I meant Thank you Eric for the code.<p>posted by Tom</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634697646861181212</link>
		<pubDate>Wed, 11 Apr 2012 18:11:26 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634697646861181212</guid>
		<dc:creator>Tom</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[&#64;Tom - hey, I&#39;m glad I was able to help someone else&#33;<p>posted by Eric BD</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634697764352830932</link>
		<pubDate>Wed, 11 Apr 2012 21:27:15 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634697764352830932</guid>
		<dc:creator>Eric BD</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Hi,<br><br>Is anyone else having problems with the link above to the Quickstart Samples&#63; When I click on it I get &#34;The Website cannot be found&#34;,<br><br>Thanks,<br>Mike<p>posted by Mike Hahn</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634698564520533239</link>
		<pubDate>Thu, 12 Apr 2012 19:40:52 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634698564520533239</guid>
		<dc:creator>Mike Hahn</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p><a class="permalink" title="Comment Permalink" href="/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634687236742037717">Mar 30, 2012 at 10:01&nbsp;AM</a></p><p>Somehow now the KinectSensorChooser is now in the Toolbox.. This is odd.</p><p>[/quote]</p><p>&nbsp;</p><p>You probably needed to build the project first as that's the only way they'll appear.</p><p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634698586463367256</link>
		<pubDate>Thu, 12 Apr 2012 20:17:26 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634698586463367256</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[The Link for the Quickstart Slides and Samples is broken<p>posted by Cliften Bowers</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634698994800899890</link>
		<pubDate>Fri, 13 Apr 2012 07:38:00 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634698994800899890</guid>
		<dc:creator>Cliften Bowers</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p>@<a href="/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634698994800899890">Cliften Bowers</a>: This should be fixed now</p><p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634702336896861386</link>
		<pubDate>Tue, 17 Apr 2012 04:28:09 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634702336896861386</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Hi,<br><br>I tried averything that says here.<br><br>I am at MainWindow.xaml window and the KinectSensorChooser doesn&#39;t appear greyed, but when i try to drag it into MainWindow doesn&#39;t appear the image of &#34;Kinect for Windows&#34;.<br><br>I tried to drag the others and nothing too.<br><br>Help plz.<p>posted by RenatoRibeiro</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634704319062994562</link>
		<pubDate>Thu, 19 Apr 2012 11:31:46 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634704319062994562</guid>
		<dc:creator>RenatoRibeiro</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p>@<a href="/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634704319062994562">RenatoRibeiro</a>: Go to the XAML view and ensure that the Sensor control is included.</p><p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634708412255111362</link>
		<pubDate>Tue, 24 Apr 2012 05:13:45 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634708412255111362</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Hello<br><br>PLease i don&#39;t know what happen but i get this Error&#9;<br>1 The name &#39;kinectSensorChooser1&#39; does not exist in the current context<br><br>and this is my function <br><br> private void Window_Loaded&#40;object sender, RoutedEventArgs e&#41;<br>        &#123;                               kinectSensorChooser1.KinectSensorChanged &#43;&#61; new DependencyPropertyChangedEventHandler&#40;kinectSensorChooser1_KinectSensorChanged&#41;&#59;                     <br>        &#125;<br><br>how can i fix it&#63;<br><br>Thank you<p>posted by Zakkar</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634708890365704987</link>
		<pubDate>Tue, 24 Apr 2012 18:30:36 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634708890365704987</guid>
		<dc:creator>Zakkar</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p>@<a href="/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634708890365704987">Zakkar</a>: Is this a custom project or the built-in sample? If it's a custom project, you will need to Right click in Solution Explorer to add a new project and add the WPF Viewer project that is available in the samples or ships in the Kinect Explorer SDK sample.</p><p>&nbsp;</p><p>Once you do that, drag and drop the KinectSensorChooser control onto the MainWindow design surface as shown in the video.</p><p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634708905268857990</link>
		<pubDate>Tue, 24 Apr 2012 18:55:26 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634708905268857990</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Hallo,<br><br>if build the same he has in this video, but the binding on the colorViewer deosn&#39;t work. I bind it on the same way he has&#40;Elementname SensorChooser1 -&#62; Path Kinect&#41;, but in my app you see nothing. The SensorChosser works, but the ColorViewer not. He compile and build well, no errors, but it show me nothing.<br><br>Anywhere an idea why it dosn&#39;t work&#63;<p>posted by Eric</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634713739775379059</link>
		<pubDate>Mon, 30 Apr 2012 09:12:57 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634713739775379059</guid>
		<dc:creator>Eric</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p>@<a href="/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634713739775379059">Eric</a>: Do any of the other viewers work?</p><p>posted by Dan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634715548723308020</link>
		<pubDate>Wed, 02 May 2012 11:27:52 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634715548723308020</guid>
		<dc:creator>Dan</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Word. you talk so fast and jump around between what your thinking about doing next and what we are suppose to be doing now. a cheat sheet of some kind would help.<p>posted by Yahoo jones</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634721951765431169</link>
		<pubDate>Wed, 09 May 2012 21:19:36 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634721951765431169</guid>
		<dc:creator>Yahoo jones</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Has anyone other than Molcavian had a problem getting the viewers into the toolbox&#63;<br>http&#58;&#47;&#47;channel9.msdn.com&#47;Series&#47;KinectQuickstart&#47;Setting-up-your-Development-Environment&#35;c634662205139236027<br>I had it in a path that was 79characters long, I moved it to one just below C&#58; that is 15 characters long, and it still isn&#39;t working.<br><br>I added a reference to the wpf version of the dll &#40;matching my c&#35; wpf project&#41;.  After building the project, they didn&#39;t appear.<br><br>I created a tab group &#40;&#34;Kinect&#34;&#41;, selected &#34;choose items&#34;, browsed to the dll, it showed the half dozen or so viewers &#40;already checked&#41;, I hit ok, and the tab group disappears.<br><br>I thought perhaps this was related to the version of .Net that was being targeted.  The default for my project was v4 client profile.  I tried v4, v3.5, etc... none of them work &#40;all but v4 worked worse, obviously&#41;.<br><br>Is there something I&#39;m missing here&#63;  I closed and reopened all instances of VS &#40;thinking something buggy may have occured&#41;.  I also reset my toolbox.  If I try creating another &#34;Kinect&#34; tab group, it says one already exists.<br><br>This is VS 2010, 10.0.40219.1 SP1Rel with a Kinect for Windows.<p>posted by BigTeeJay</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634727247511609414</link>
		<pubDate>Wed, 16 May 2012 00:25:51 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634727247511609414</guid>
		<dc:creator>BigTeeJay</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Oh my word, make a liar out of me.<br><br>After deleting the reference in folder just below C&#58;, I deleted and re-added the Release binary of the wpf viewers again, then reset my toolbox, created &#34;Kinect&#34; tab, chose items, hit ok... and now they&#39;re usable.<br><br>Wish I know what changed so I could document it in case anyone else has the same issue, sorry. &#58;&#40;<p>posted by BigTeeJay</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634727250301313890</link>
		<pubDate>Wed, 16 May 2012 00:30:30 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634727250301313890</guid>
		<dc:creator>BigTeeJay</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Ok, feeling validated, though frustrated &#59;&#41;<br><br>I got them to appear in a new WPF test project, but I can&#39;t get them to appear &#40;yet&#41; in my actual development project.<br><br><br>UPDATE&#58; Deleted reference, added reference, reset toolbox, created Kinect tab, choose items, hit COM Tab, back to WPF tab, Enter. Closed VS, reopened, opened my project.<br><br>Now they appear.<br><br>&#42;phew&#42;<p>posted by BigTeeJay</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634727256585929857</link>
		<pubDate>Wed, 16 May 2012 00:40:58 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634727256585929857</guid>
		<dc:creator>BigTeeJay</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[link error 2019 __imp__NuiCreateSensorByIndex&#64;8  <br>I use C&#43;&#43;. i have link Kinect10.lib.<br><br>plz help  <p>posted by zhang</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634733513685484123</link>
		<pubDate>Wed, 23 May 2012 06:29:28 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634733513685484123</guid>
		<dc:creator>zhang</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[ this&#39;s my problem&#58;<br> <br>error LNK2019&#58; unresolved external symbol __imp__NuiCreateSensorByIndex&#64;8 referenced in function<br><p>posted by zhang oliver</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634733514990071725</link>
		<pubDate>Wed, 23 May 2012 06:31:39 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634733514990071725</guid>
		<dc:creator>zhang oliver</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[my project http&#58;&#47;&#47;test.tigerdrs.com&#47;blank.rar .plz watch<p>posted by oliver zhang</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634733522058607347</link>
		<pubDate>Wed, 23 May 2012 06:43:25 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634733522058607347</guid>
		<dc:creator>oliver zhang</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[great tutorial and thx to Molcavian, i had the same problem.<br><br>use&#58; win7 pro 32bit, kinect for xbox 360, sdk 1.5.0.0, visual studio 2010<br><br>problem&#58; it seams &#34;Microsoft.Samples.Kinect.WpfViewers&#34; changed -&#62; there is no &#34;KinectSensorChooser&#34; left in &#34;Toolbox&#34; and the &#34;KinectSensorManager.cs&#34; also doesn&#39;t appear<br><br>it&#39;s an Wpf Project, Microsoft.Kinect.dll is referenced, dependencies are set, cleaned and new buildet<br><br>what did I wrong, forgot or what ever&#63;<br>has anybody a hint&#63;<p>posted by Dennis</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634734606782312634</link>
		<pubDate>Thu, 24 May 2012 12:51:18 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634734606782312634</guid>
		<dc:creator>Dennis</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Hi Dennis, I&#39;ve got the same problem, the &#34;KinectSensorChooser&#34; no exist... I don&#39;t know what must to do.<p>posted by DrWaky</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634747420132317452</link>
		<pubDate>Fri, 08 Jun 2012 08:46:53 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634747420132317452</guid>
		<dc:creator>DrWaky</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[I&#39;m with Dennis and DrWaky,<br>I&#39;ve got the 1.5 Kinect SDK and referencing the WPF Viewer sample in that package doesn&#39;t make the KinectSensorChooser tool available.<br><br>I just ordered my Kinect power adapter, so I&#39;m hoping to have this figured out soon, so I&#39;m ready to roll when it gets here.<br><br>Suggestions on another project to find it in&#63;&#63;<p>posted by kinectIsBoss</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634755417056866835</link>
		<pubDate>Sun, 17 Jun 2012 14:55:05 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634755417056866835</guid>
		<dc:creator>kinectIsBoss</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[I was running into the same problem where I was using the KinectWpfViewers that was installed with the install of the KinectExplorer. This KinectWpfViewers library evidently is a newer&#47;different version that does not include the KinectSensorChooser.<br><br>After spending a good part of the day trying to figure out the problem, I discovered that the correct WpfViewers project to use that has the KinectSensorChooser control is actually located in the Dependencies&#47;KinectWpfViewers folder that is delivered with the KinectforWindowsSDKV1. <br><br>Also, I was trying to build an x64 version of the Application and KinectWpfViewers but I had a problem where the Xaml Designer would not accept the x64 version of the controls.<br><br>Hope this helps someone.<p>posted by GilC</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634767930624103830</link>
		<pubDate>Mon, 02 Jul 2012 02:31:02 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634767930624103830</guid>
		<dc:creator>GilC</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Ok, I was finally able to complete the steps explained in the video and made the appropriate changes as stated above. Just a warning to everyone who created their own new project as I did, take a look at the Getting Started samples in the KinectforWindowsSDKV1 folder for this video &#40;2.Setting Up Dev Envirnment&#41;. There are more changes to be made to the MainWindow.cs than is shown above. <br><br>But even after I changed my project to match the sample, I was still getting an exception when I unplugged the Kinect and VS would abort. However, building the Release version and running it outside VS, everything worked as shown in the video. Don&#39;t know why the exception occurred when running a Debug version in VS 2010.<br><br>Again, maybe this little bit of info helps someone else.<p>posted by GilC</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634768017579458195</link>
		<pubDate>Mon, 02 Jul 2012 04:55:57 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634768017579458195</guid>
		<dc:creator>GilC</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[After installing Kinect for Windows SDK 1.5 and following the video, the KinectSensorChooser is actually missing from the Toolbox. Please explain how to deal with the sensor choosing issue. THanks.<p>posted by Perry</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634794559000322084</link>
		<pubDate>Wed, 01 Aug 2012 22:11:40 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634794559000322084</guid>
		<dc:creator>Perry</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[This is getting ridiculous... I am experiencing the same issue with the KinectSensorChooser. Can someone clearly explain how to solve this issue&#63;<p>posted by Tom</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634801784381067707</link>
		<pubDate>Fri, 10 Aug 2012 06:53:58 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634801784381067707</guid>
		<dc:creator>Tom</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Changed the application&#39;s target framework from 4.5 to .NET Framework 4 Client Profile and rebuilt it. That seemed to do the trick...<p>posted by Tom</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634801828980830389</link>
		<pubDate>Fri, 10 Aug 2012 08:08:18 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634801828980830389</guid>
		<dc:creator>Tom</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[If there is anyone still having trouble, you need to download this&#58; http&#58;&#47;&#47;files.ch9.ms&#47;coding4fun&#47;KinectforWindowsSDKV1.zip You should add the Microsoft.Samples.Kinect.WpfViewers from the downloaded document. Add this project, the Coding4Fun.Kinect.Wpf.dll and Microsoft.Kinect references to your named project. The KinectSensorChooser should be showing. This should be your final code&#58; <br><br><br>using System&#59;<br>using System.Collections.Generic&#59;<br>using System.Linq&#59;<br>using System.Text&#59;<br>using System.Windows&#59;<br>using System.Windows.Controls&#59;<br>using System.Windows.Data&#59;<br>using System.Windows.Documents&#59;<br>using System.Windows.Input&#59;<br>using System.Windows.Media&#59;<br>using System.Windows.Media.Imaging&#59;<br>using System.Windows.Navigation&#59;<br>using System.Windows.Shapes&#59;<br>using Microsoft.Kinect&#59;<br>namespace KinectSetup<br>&#123;<br>    &#47;&#47;&#47; &#60;summary&#62;<br>    &#47;&#47;&#47; Interaction logic for MainWindow.xaml<br>    &#47;&#47;&#47; &#60;&#47;summary&#62;<br>    public partial class MainWindow &#58; Window<br>    &#123;<br>        public MainWindow&#40;&#41;<br>        &#123;<br>            InitializeComponent&#40;&#41;&#59;<br>        &#125;<br><br><br>        <br>        private void Window_Loaded&#40;object sender, RoutedEventArgs e&#41;<br>        &#123;<br><br>            kinectSensorChooser1.KinectSensorChanged &#43;&#61; new DependencyPropertyChangedEventHandler&#40;kinectSensorChooser1_KinectSensorChanged&#41;&#59;<br><br><br><br><br>        &#125;<br><br>        void kinectSensorChooser1_KinectSensorChanged&#40;object sender, DependencyPropertyChangedEventArgs e&#41;<br>        &#123;<br>            KinectSensor oldSensor &#61; &#40;KinectSensor&#41;e.OldValue&#59;<br>            stopKinect&#40;oldSensor&#41;&#59;<br><br>            KinectSensor newSensor &#61; &#40;KinectSensor&#41;e.NewValue&#59;<br><br>            &#47;&#42;<br>            newSensor.ColorStream.Enable&#40;&#41;&#59;<br>            newSensor.DepthStream.Enable&#40;&#41;&#59;<br>            newSensor.SkeletonStream.Enable&#40;&#41;&#59;<br>            newSensor.AllFramesReady &#43;&#61; new EventHandler&#60;AllFramesReadyEventArgs&#62;&#40;zeroSensor_AllFramesReady&#41;&#59;<br>             &#42; &#42;&#47;<br><br>            &#47;&#47;NOTE&#58; Add this check for a null sensor<br>            if &#40;newSensor &#61;&#61; null&#41;<br>            &#123;<br>                return&#59;<br>            &#125;<br><br>           <br><br>            &#47;&#47;register for event and enable Kinect sensor features you want<br>            newSensor.AllFramesReady &#43;&#61; new EventHandler&#60;AllFramesReadyEventArgs&#62;&#40;newSensor_AllFramesReady&#41;&#59;<br>            newSensor.ColorStream.Enable&#40;ColorImageFormat.RgbResolution640x480Fps30&#41;&#59;<br>            newSensor.DepthStream.Enable&#40;DepthImageFormat.Resolution640x480Fps30&#41;&#59;<br>            newSensor.SkeletonStream.Enable&#40;&#41;&#59;<br><br><br>            try<br>            &#123;<br>                newSensor.Start&#40;&#41;&#59;<br>            &#125;<br>            catch &#40;System.IO.IOException&#41;<br>            &#123;<br><br>                kinectSensorChooser1.AppConflictOccurred&#40;&#41;&#59;<br>            &#125;<br><br>        &#125;<br><br>        private void newSensor_AllFramesReady&#40;object sender, AllFramesReadyEventArgs e&#41;<br>        &#123;<br>            &#47;&#47;throw new NotImplementedException&#40;&#41;&#59;<br>        &#125;<br><br>        void stopKinect&#40;KinectSensor sensor&#41;<br>        &#123;<br><br>            if &#40;sensor &#33;&#61; null&#41;<br>            &#123;<br>                &#47;&#47;NOTE&#58; Add this code<br>                if &#40;sensor.IsRunning&#41;<br>                &#123;<br>                    sensor.Stop&#40;&#41;&#59;<br>                    if &#40;sensor.AudioSource &#33;&#61; null&#41;<br>                    &#123;<br>                        sensor.AudioSource.Stop&#40;&#41;&#59;<br>                    &#125;<br>                &#125;<br>            &#125;<br><br>        &#125;<br><br><br><br>        void Window_Closing&#40;object sender, System.ComponentModel.CancelEventArgs e&#41;<br>        &#123;<br><br>            stopKinect&#40;kinectSensorChooser1.Kinect&#41;&#59;<br><br><br>        &#125;<br>    &#125;<br><br>&#125;<br><br><p>posted by Thomas</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634805601176730484</link>
		<pubDate>Tue, 14 Aug 2012 16:55:17 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634805601176730484</guid>
		<dc:creator>Thomas</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p>Working code that doesn't error out when you unplug the usb cable:</p><p>&nbsp;</p><p>using System;<br>using System.Collections.Generic;<br>using System.Linq;<br>using System.Text;<br>using System.Threading.Tasks;<br>using System.Windows;<br>using System.Windows.Controls;<br>using System.Windows.Data;<br>using System.Windows.Documents;<br>using System.Windows.Input;<br>using System.Windows.Media;<br>using System.Windows.Media.Imaging;<br>using System.Windows.Navigation;<br>using System.Windows.Shapes;<br>using Microsoft.Kinect;</p><p>namespace KinectForDev<br>{<br>/// &lt;summary&gt;<br>/// Interaction logic for MainWindow.xaml<br>/// &lt;/summary&gt;<br>public partial class MainWindow : Window<br>{<br>public MainWindow()<br>{<br>InitializeComponent();<br>}</p><p>//KinectSensor _sensor;</p><p>private void Window_Loaded_1(object sender, RoutedEventArgs e)<br>{<br>kinectSensorChooser1.KinectSensorChanged &#43;= kinectSensorChooser1_KinectSensorChanged; <br>}</p><p>void kinectSensorChooser1_KinectSensorChanged(object sender, DependencyPropertyChangedEventArgs e)<br>{<br>KinectSensor oldSensor = (KinectSensor)e.OldValue;<br>StopKinect(oldSensor);<br>KinectSensor newSensor = (KinectSensor)e.NewValue;</p><p>if (newSensor != null)<br>{<br>newSensor.ColorStream.Enable();<br>newSensor.DepthStream.Enable();<br>newSensor.SkeletonStream.Enable();<br>newSensor.AllFramesReady &#43;= new EventHandler&lt;AllFramesReadyEventArgs&gt;(newSensor_AllFramesReady);</p><p>try<br>{<br>newSensor.Start();<br>}<br>catch (System.IO.IOException)<br>{<br>kinectSensorChooser1.AppConflictOccurred();<br>}<br>}<br>}</p><p>void newSensor_AllFramesReady(object sender, AllFramesReadyEventArgs e)<br>{<br>//throw new NotImplementedException();<br>}</p><p><br>void StopKinect(KinectSensor sensor)<br>{</p><p>if (sensor != null)<br>{<br>//NOTE: Add this code<br>if (sensor.IsRunning)<br>{<br>sensor.Stop();<br>if (sensor.AudioSource != null)<br>{<br>sensor.AudioSource.Stop();<br>}<br>}<br>}</p><p>}</p><p>private void Window_Closing_1(object sender, System.ComponentModel.CancelEventArgs e)<br>{<br>StopKinect(kinectSensorChooser1.Kinect);<br>}</p><p>}<br>}</p><p>posted by tenonic</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634853209006624946</link>
		<pubDate>Mon, 08 Oct 2012 19:21:40 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634853209006624946</guid>
		<dc:creator>tenonic</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[I can&#39;t find anything about Microsoft.kinect to add to the references. I&#39;ve installed the SDK and the hardware is plugged in.<br><br>I&#39;m able to dig up Microsoft.kinect.dll, but that&#39;s probably not the same thing.<br><br>Please advise.<p>posted by Marc</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634867722464839805</link>
		<pubDate>Thu, 25 Oct 2012 14:30:46 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634867722464839805</guid>
		<dc:creator>Marc</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[I&#39;ve gotten past my previous problem, I&#39;m having another one though.<br><br>Like a lot of other people I can&#39;t use<br>      kinectSensorChooser1<br>It just doesn&#39;t show up as an option. I&#39;ve tried everything. Everything is referenced properly.<br><br>Any ideas&#63;<p>posted by Marc</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634867819359053558</link>
		<pubDate>Thu, 25 Oct 2012 17:12:15 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634867819359053558</guid>
		<dc:creator>Marc</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Just to clear up my last post, I&#39;m able to drag and drop the KinectSensorChooser into MainWindow.xaml but when it comes to referencing it in MainWindow.xaml.cs then it doesn&#39;t show up.<br><br>I&#39;ve literally done everything mentioned by others and can&#39;t get it to work. I have both the project &#40;KinectSetupDev &#38; Microsoft.Sample.Kinect.WpfViewers&#41; in the Solution Explorer and the first is referencing the second. But it&#39;s still not showing kinectSensorChooser as an available option.<p>posted by Marc</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634867891637539380</link>
		<pubDate>Thu, 25 Oct 2012 19:12:43 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634867891637539380</guid>
		<dc:creator>Marc</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Where could I get the codes of these videos&#63; I&#8216;m new to Kinect for Windows SDK.<p>posted by Ryan</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634871933674346055</link>
		<pubDate>Tue, 30 Oct 2012 11:29:27 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634871933674346055</guid>
		<dc:creator>Ryan</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Hi all, I&#39;m using SDK V.1.6 and VS 2012.<br>I finally understood &#40;after two hours of browsing&#41; where the damn SensorChooser IS&#58;<br><br>As you can read in those patch notes &#40;I strongly suggest you to do search for the string &#34;KinectSensorChooser&#34; in that page&#41;&#58;<br><br>http&#58;&#47;&#47;www.windows7download.com&#47;win7-kinect-sdk&#47;history-lxqvgakz.html<br><br>&#34;We&#8217;ve taken KinectSensorChooser, formerly part of the WpfViewers and split the logic and UI into two different classes&#58; KinectSensorChooser and KinectSensorChooserUI in Microsoft.Kinect.Toolkit.dll.<br>KinectSensorChooser could be used in non-WPF scenarios as it is logic only, no UI.&#34;<br><br>So, Microsoft.Kinect.Toolkit.dll. is the place to look for&#33;<br><br>Hope this helps&#33;<br><p>posted by Fabrizio Borgia</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634876479299335938</link>
		<pubDate>Sun, 04 Nov 2012 17:45:29 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634876479299335938</guid>
		<dc:creator>Fabrizio Borgia</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Hello&#33;&#33;<br><br>I have a problem. I&#39;ve used the SDK 1.6 . I can&#39;t find in toolbox the Figure kinectSensorChooser as the video show. What Do I do&#63; Help me please&#33;&#33;&#33;<p>posted by Pedro</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634893275944792118</link>
		<pubDate>Sat, 24 Nov 2012 04:19:54 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634893275944792118</guid>
		<dc:creator>Pedro</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[&#64;Fabrizio Borgia Hi thanks for the info but how do you add the Microsoft.Kinect.Toolkit.dll. &#63;&#63; I&#39;ve only added Microsoft.kinect please help i&#39;m using the SDK 1.6 and the KinectSensorChooser is NOT in the toolbox&#63;&#63;<br><br>Thank you.<p>posted by Jimmy Neutron</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634894672448455505</link>
		<pubDate>Sun, 25 Nov 2012 19:07:24 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634894672448455505</guid>
		<dc:creator>Jimmy Neutron</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[&#64;Fabrizio Borgia I&#39;ve just added the Microsoft.kinect.toolkit but the KinectSensorCooser only has two option which are&#58; KinectSensorChooser.Equals and KinectSensorChooser.ReferenceEquals it does not allow me to write KinectSensorChooser1 &#58;&#40; Please help ASAP, thanks<br><p>posted by Jimmy Neutron</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634894753550371958</link>
		<pubDate>Sun, 25 Nov 2012 21:22:35 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634894753550371958</guid>
		<dc:creator>Jimmy Neutron</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[&#64;Jimmy,  right click in your Toolbox, and select &#34;Choose Item&#34;.  Navigate to the Samples&#47;bin directory, and select the DLL.<br><br>It would really be nice if the video was updated to show how to code with the SensorChooserUI since SensorChooser is no longer available for WPF, but I&#39;m sure we&#39;ll figure it out &#58;&#41;<p>posted by mgoodall</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634897270193458508</link>
		<pubDate>Wed, 28 Nov 2012 19:16:59 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634897270193458508</guid>
		<dc:creator>mgoodall</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[How do we use the SensorChooserUI&#63;&#63;<p>posted by John</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634900623695752383</link>
		<pubDate>Sun, 02 Dec 2012 16:26:09 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634900623695752383</guid>
		<dc:creator>John</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[I had the same problem with SensorChooserUI and found the following <br><br>----------------------------------<br>Just reference the compiled binary from&#58;<br><br>C&#58;&#92;Program Files&#92;Microsoft SDKs&#92;Kinect&#92;Developer Toolkit v1.6.0&#92;Samples&#92;bin<br><br>I&#39;m not sure it will show up in the toolbox, but you can start using the control from WPF.  Take a look at the ShapeGame sample to see how to create the WPF markup and use it from the code behind.<br>------------------<br>... at ...<br>http&#58;&#47;&#47;c4fkinect.codeplex.com&#47;discussions&#47;394514<br><br>It was kind of painful but in the end I added a  KinectSensorChooserUI to the main window and assigned a KinectSensorChooser object to it, then started and stopped the KinectSensorChooser object.<p>posted by Art</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634901595350926767</link>
		<pubDate>Mon, 03 Dec 2012 19:25:35 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634901595350926767</guid>
		<dc:creator>Art</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Hi&#33;<br><br>I have been following the videos and they have been a great help so far.  I am not sure I referenced everything correctly though.  I am getting an error at a couple stops where I wrote the word &#39;Void&#34; in a line of code, such as the void in this line&#58;<br><br>        private void Window_Closing&#40;object sender, System.ComponentModel.CancelEventArgs e&#41;<br><br>the error reads&#58;<br>Error&#9;2&#9;Expected class, delegate, enum, interface, or struct&#9;<br><br>Any ideas&#63;  Thanks&#33;<br><p>posted by Bridge</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634932782932354623</link>
		<pubDate>Tue, 08 Jan 2013 21:44:53 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634932782932354623</guid>
		<dc:creator>Bridge</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Hi,<br>I&#39;ve followed the guide to the T and as other people seem to be having this problem. I have the 1.6 SDK.<br>The KinectSensorChooser is showing up, yet I am not able to drop it into the main window.<br>I&#39;ve tried what other people have been saying but to no avail yet.<br><br>Can anyone help&#63;<br>Thanks.<p>posted by Ross</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634957680861948643</link>
		<pubDate>Wed, 06 Feb 2013 17:21:26 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634957680861948643</guid>
		<dc:creator>Ross</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[I just installed the 1.0 SDK and all the things are working fine... with v1.6 SDK it was not working<br><br>I believe it can help someone with the same problem.<br>Thanks.<p>posted by Lucas</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634975029397210541</link>
		<pubDate>Tue, 26 Feb 2013 19:15:39 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634975029397210541</guid>
		<dc:creator>Lucas</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[<p>Hey guys.</p><p>&nbsp;</p><p>I was trying to do it in my computer, but when I try to drag and drop the KinectSensorChooser, the mouse pointer appear to me like <span>prohibited</span>. Does anyone see that before?</p><p>&nbsp;</p><p>Thanks.</p><p>posted by cmdmss</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634979148500811684</link>
		<pubDate>Sun, 03 Mar 2013 13:40:50 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634979148500811684</guid>
		<dc:creator>cmdmss</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Hey,<br><br>I&#39;ve gone over my code a few times now and everything appears correct, but when running the program, each time I disconnect the Kinect, Visual Studios crashes. Has anyone experienced the same problem or know how to fix it&#63;<br><br>Thanks.<p>posted by Drew</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634983180375696297</link>
		<pubDate>Fri, 08 Mar 2013 05:40:37 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c634983180375696297</guid>
		<dc:creator>Drew</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Hey,<br><br>Where can we download the kinect explorer from &#63;<p>posted by Archit Kalra</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c635001055268847165</link>
		<pubDate>Thu, 28 Mar 2013 22:12:06 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c635001055268847165</guid>
		<dc:creator>Archit Kalra</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[Hi,<br>I&#39;ve followed the guide the vidio and debuding, it isn&#39;t &#34;Initializing&#34;. I saw just &#34;required or blank&#34;. My Kinect is XBOX360 and used visual Studio 2010. why could not working&#63; Hope this helps.<p>posted by ANN</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c635009350572579390</link>
		<pubDate>Sun, 07 Apr 2013 12:37:37 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c635009350572579390</guid>
		<dc:creator>ANN</dc:creator>
	</item>
	<item>
		<title>Re: Setting up your Development Environment</title>
		<description>
			<![CDATA[ANN&#58; Same problem with me.<br>Visual Studio 2010, Kinect XBOX 360<br><br>Kinect works in the samples for SDK 1.5 but in the program nothing happens &#58;&#47;<p>posted by Liv3</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c635019791536127757</link>
		<pubDate>Fri, 19 Apr 2013 14:39:13 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/KinectQuickstart/Setting-up-your-Development-Environment#c635019791536127757</guid>
		<dc:creator>Liv3</dc:creator>
	</item>
</channel>
</rss>