vs.net 2013 express上的System.Windows.Forms参考

时间:2021-10-27 20:37:14

I try to develop a simple dll with System.Windows.Forms reference on vs.net 2013 express.

我尝试使用vs.net 2013 express上的System.Windows.Forms参考开发一个简单的dll。

http://msdn.microsoft.com/en-us//library/ms171830.aspx

http://msdn.microsoft.com/en-us//library/ms171830.aspx

///////////////////////////////////////////////////////////////////// 
// Pull model smart tag example. 
// Need references to System.dll, System.Windows.Forms.dll,  
// System.Design.dll, and System.Drawing.dll. 
///////////////////////////////////////////////////////////////////// 

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Windows.Forms;
using System.Text;
using System.Reflection;

Until this vs.net version, I usually right click References in SolutionExplorer and Add Reference and find System.Windows.Forms;

在这个vs.net版本之前,我通常右键单击SolutionExplorer和Add Reference中的References并找到System.Windows.Forms;

However, I could not find System.Windows.Forms anymore.

但是,我再也找不到System.Windows.Forms了。

What do I miss? First of all, I simply need to create DLL on 64 bit-windows box. No Phone, no store, and it's not clear which template I start with.

我错过了什么?首先,我只需要在64位窗口框上创建DLL。没有电话,没有商店,我不清楚我从哪个模板开始。

If this is because of limitation of express version, please tell me so. I will install the higher edition since I have MSDN.

如果这是因为快递版的限制,请告诉我。我将安装更高版本,因为我有MSDN。

Thanks.

谢谢。

PS. I could do this in express edition of the prior versions of vs.net (2010, 2012). Is the situation changes??

PS。我可以在vs.net的先前版本(2010年,2012年)的快递版本中执行此操作。情况有变化吗?

1 个解决方案

#1


3  

It sounds like you installed the wrong edition of Express. You probably installed "Express 2013 for Windows", which is strictly for building Windows Phone and Windows Store apps. (Yes, the naming is confusing. It's because they're really trying to steer people toward creating Store apps.)

听起来你安装了错误的Express版本。您可能安装了“Express 2013 for Windows”,它主要用于构建Windows Phone和Windows应用商店应用。 (是的,命名令人困惑。这是因为他们真的试图引导人们创建商店应用程序。)

Instead, you need "Express 2013 for Windows Desktop".

相反,您需要“Express 2013 for Windows Desktop”。

#1


3  

It sounds like you installed the wrong edition of Express. You probably installed "Express 2013 for Windows", which is strictly for building Windows Phone and Windows Store apps. (Yes, the naming is confusing. It's because they're really trying to steer people toward creating Store apps.)

听起来你安装了错误的Express版本。您可能安装了“Express 2013 for Windows”,它主要用于构建Windows Phone和Windows应用商店应用。 (是的,命名令人困惑。这是因为他们真的试图引导人们创建商店应用程序。)

Instead, you need "Express 2013 for Windows Desktop".

相反,您需要“Express 2013 for Windows Desktop”。