vs2010 windows应用程序设计时错误

发布于 2024-12-01 07:19:22 字数 363 浏览 1 评论 0原文

我们在 Windows 应用程序项目中遇到自定义用户控件的问题。 我们使用 Visual Studio 2010 (C#)。 当我们打开包含自定义控件的窗体的设计视图时,设计视图显示以下错误: https://i.sstatic.net/sZMxW.jpg

表单属于 ui.forms,而自定义控件属于 ui.controls。

这个错误突然出现,即使我们恢复到较旧的版本,它仍然出现。

如果我们单击“忽略并继续”,第一个错误不会导致任何问题,但控件“specializzazioni1”不再出现在表单中。 无论如何,在执行时,它显示正确。

we have a problem with a custom user control in a windows application project.
we use visual studio 2010 (c#).
when we open the design view of a form that includes a custom control, the design view shows the following error:
https://i.sstatic.net/sZMxW.jpg

the form belongs to ui.forms while the custom control belongs to ui.controls.

this error appeared suddenly, and even if we revert to an older revision, it still appears.

if we click on "ignore and continue", the first error doesn't cause any problem, but the control "specializzazioni1" doesn't appear in the form anymore.
anyway, at execution time, it appears correctly.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

稚然 2024-12-08 07:19:22

以下有时有助于捕获设计时错误。 参考< /a>

1) 启动 Visual Studio 的第二个实例

2) 进入“工具”菜单,“附加到进程”,选择“devenv.exe”
处理,然后单击“附加”按钮。

3) 在“调试/异常”菜单中,
在此处输入图像描述
首次引发异常时启用异常捕获(在“调试”->“异常”菜单中)。

4) 打开附加了调试器的设计器。

5)第二个 Visual Studion 将因您的错误而中断。

Some times below helps to catch design time errors. Reference

1) Start a second instance of visual studio

2) go the the Tools menu, "Attach to process", select the 'devenv.exe'
process, and click the 'attach' button.

3) In the Debug/Exceptions menu,
enter image description here
Turn on exception catching when first thrown (in the Debug->Exceptions menu).

4) Open the designer with the debugger attached.

5) The second visual studion will break on your error.

迷路的信 2024-12-08 07:19:22

通常,当您在 VS 设计器中遇到这样的错误时,这是​​因为您的用户控件 \ 表单的构造函数中抛出了异常 - 所以我会首先检查那里发生了什么。也许您正在做某种出错的初始化?

Usually when you encounter errors like this in the VS designer it's because an exception is thrown in the constructor of your user control \ form - so i'd check what's going on there to begin with. Maybe you're doing some kind of initialisation that's going wrong ?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文