1

这个错误是突然开始的。
我正在更改一些控件位置,Visual Studio 2010 正在重写该InitializeComponent函数。问题是它删除了一些new功能。

之前的代码:

private void InitializeComponent()
{
    this.advButton1 = new AdvButton();
    this.advButton2 = new AdvButton();
    this.advButton3 = new AdvButton();
    this.advButton4 = new AdvButton();
    this.SuspendLayout();

在设计器中移动按钮后的代码:

private void InitializeComponent()
{
    this.SuspendLayout();

这只发生在我自己的用户控件中,它们与表单位于相同的命名空间下。

另一个问题(不一致):
我正在将我的用户控件添加到表单中,查看InitializeComponent功能 - 我在任何地方都看不到控件。

我已经卸载了 Visual Studio 2010 并使用 Service Pack 1 重新安装它。有
什么想法吗?

4

1 回答 1

0

最后通过将类AdvButton从内部更改为公共来解决它。

于 2012-11-30T21:42:12.637 回答