如何在 Visual Studio 2010 中创建设计器?
我创建了一个项目模板,该模板生成 .CS 文件并将其添加到项目中。我想创建一个设计器,每次用户尝试从解决方案资源管理器打开此 .CS 文件时都会显示该设计器,就像 XX.EDMX 和 XX.Dsigner.cs 一样 ?
有什么想法吗? 谢谢!!
I created an item template that generates a .CS file and adds it to the project. I want to create a DESIGNER that is shown everytime the user tries to open this .CS file from the Solution Explorer, just like XX.EDMX and XX.Dsigner.cs
?
Any ideas?
Thanks!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简短的答案在 VSSDK 参考(MSDN 上)页面的 设计器初始化和元数据配置页面(所有关键字都链接在页面本身上):
不幸的是,长答案将非常长,并且在缺乏真正好的文档的情况下,涉及大量的试验和错误。快速搜索没有显示任何完整的示例,因此,如果您愿意/能够,如果您可以分享您的发现,那就太好了。
The short answer is given in the VSSDK reference (on MSDN) page on Designer Initialization and Metadata Configuration page (all keywords are linked on the page itself):
Unfortunately the long answer is going to be extremely long, and in the absence of genuinely good documentation, involve a lot of trial and error. A quick search didn't show any complete examples, so if you're willing/able to, it'd be great if you could share what you figure out.