,net NAUI中如何引用System.Windows.Forms;
时间: 2024-03-11 13:47:59 浏览: 125
System.Windos.Forms.UI
在使用 Visual Studio 编写 NAUI 程序时,可以在代码文件的开头使用 `using` 关键字来引用 `System.Windows.Forms` 命名空间,示例代码如下:
```csharp
using System.Windows.Forms;
// 在类定义中使用 Windows 窗体控件
public class MyForm : Form
{
// ...
}
```
如果不想使用 `using` 关键字,也可以在代码中直接使用完全限定名称来引用命名空间,示例代码如下:
```csharp
// 在类定义中使用 Windows 窗体控件
public class MyForm : System.Windows.Forms.Form
{
// ...
}
```
需要注意的是,在使用 `System.Windows.Forms` 命名空间中的类型之前,需要先确保已经在项目的引用中添加了相应的程序集(`System.Windows.Forms.dll`)。
阅读全文