VS2008导航栏不显示页面控件
在我以前的工作中,我曾经使用 Visual Studio 2008 中的导航栏选择一个控件,然后从成员下拉列表中选择事件,以在代码中自动创建事件供我实现。现在,在我的新工作中,在我的 Visual Studio 2008 中,我不再在导航栏中看到页面控件。我只看到页面类和关联的成员。有谁知道为什么它不再显示页面控件?
In my old job I used to use the navigation bar in visual studio 2008 to select a control and then the event from the members drop-down to automatically create the event in the code for me to implement. Now at my new job, in my visual studio 2008 I no longer see page controls in the navigation bar. I only see the page class and associated members. Does anyone know why it no longer is showing the page controls?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您认为这是因为您现在使用 C# 而不是 VB 的猜测是正确的。
VB 导航栏在左侧的下拉列表中显示页面(或窗体或窗口,如果您使用的是 Windows 窗体或 WPF)及其所有子控件,以及所有事件(无论您是否正在处理它们) )在右侧的下拉菜单中。您可以选择未处理的事件来添加事件处理程序。
在 C# 中,左侧下拉列表仅包含您正在处理的类。
Your guess that it's because you're using C# now instead of VB is correct.
The VB navigation bar shows the Page (or Form or Window if you're working with Windows Forms or WPF) and all of its child controls in the dropdown list on the left side, and all events (whether you're handling them or not) in the dropdown on the right side. You can select an unhandled event to add an event handler.
In C#, the left dropdown contains only the class you're working on.
导航栏是否是指从工具箱中获得的控件?
第三方软件供应商可以向工具箱添加额外的控件。
虽然我没有使用 ASP.NET 及其控件的经验,但我的第一个猜测是,在您之前的工作中您使用了这样的自定义控件,而现在在您的新工作中他们没有安装它。
如果您确实需要它们,请快速google 可能会在这里帮助您。
Could it be that by navigation bar you mean a control that you got from the toolbox?
3rd party software vendors can add extra controls to the toolbox.
Although I have not experience with asp.net and it's controls, my first guess is that at your previous job you used such a custom control and now at your new job they don't have it installed.
If you really need them a quick google might help you here.