1

如果我创建一个名为 myForm 的新表单,myForm.h 的顶部如下所示:

#pragma once

using namespace System;
using namespace System::ComponentModel;
using namespace System::Collections;     //<<<< THIS ONE
using namespace System::Windows::Forms;
using namespace System::Data;
using namespace System::Drawing;

这些甚至都不需要,因为出色的表单设计师总是完全限定其对象。

标有 THIS ONE 的那个特别烦人,因为它破坏了我的构建。这是因为我到处都使用 IList 的通用形式——我非常喜欢它,所以我把它放在 stdafx.h 中,如下所示:

using System::Collections::Generic::IList;

因此,如果我想从碰巧使用 IList 的任何其他文件中使用 myForm,如下所示:

#include "StdAfx.h"
#include "ABC.h"
#include "myForm.h"

ABC::ABC()
{
    IList<int>^ myList;
    ...
}

然后它无法编译:

1>.\ABC.cpp(7) : error C2872: 'IList' : ambiguous symbol
1>        could be 'c:\windows\microsoft.net\framework\v2.0.50727\mscorlib.dll : System::Collections::Generic::IList'
1>        or       'c:\windows\microsoft.net\framework\v2.0.50727\mscorlib.dll : System::Collections::IList'
1>.\ABC.cpp(7) : error C2872: 'IList' : ambiguous symbol
1>        could be 'c:\windows\microsoft.net\framework\v2.0.50727\mscorlib.dll : System::Collections::Generic::IList'
1>        or       'c:\windows\microsoft.net\framework\v2.0.50727\mscorlib.dll : System::Collections::IList'

那么,我怎样才能阻止新表单添加所有这些无用和破坏性的用途呢?

4

2 回答 2

2

您可以修改 Visual Studio 的表单模板。如需进一步阅读,请查看:

http://msdn.microsoft.com/en-us/library/ms185319(VS.80).aspx

于 2009-09-16T15:18:43.980 回答
2

您可以通过编辑 ItemTemplates 目录中您使用的特定语言的 zip 文件来更改 Visual Studio 使用的默认模板。

C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\ItemTemplates\CSharp\Code\1033

是 C# 模板所在的位置。我假设 C++ 模板将位于类似的目录中,但我没有方便地安装 C++ 的 VS 实例。

于 2009-09-16T15:19:10.670 回答