简体   繁体   中英

Adding a Resource in Visual Studio 2013

So this is going to be extremely basic, but I'm not very familiar with Visual Studio. I'm working on programming the Kinect using KinectSDK and want to use the Coding4Fun Kinect Toolkit. I've downloaded it and put

using Coding4Fun.Kinect.Wpf;

at the beginning of my program, but it doesn't recognize it. My question is, where should I place those files and how can I add this resource to my project? When I googled around, I get stuck at the "choose Global Resource File" because I don't see it anywhere. Could anybody provide a nice step by step instruction?

Go to Tools -> Nuget Package Manager -> Package Manager Console and enter:

Install-Package Coding4Fun.Kinect.Wpf

This should install all the necessary references.

Here's the link to Nuget Documentation . It's the best way to manage external references in Visual Studio.

You need to add a reference to that DLL in your project.

在此处输入图片说明

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM