在 Visual Studio 上的 Web 窗体中包含 Web 用户控件的快速方法
我在 Visual Studio 2008 上知道这种方式:
当我要包含资源时,写“一些东西”,单击Design
,拖放Web User Control
并返回到来源
。
我想知道是否可以在不使用 Design
区域(也许使用 CTRL 等按钮)的情况下完成此操作,而不是直接拖放到 Source
区域上。
是否可以?或者你还知道其他方法吗?谢谢
I know this way on Visual Studio 2008 :
write "somethings" when I'll to include the resource, click on Design
, drag and drop the Web User Control
and return to the Source
.
I'd like to know if I can do it without use the Design
area, maybe some buttons like CTRL and than drag and drop directly on the Source
area.
Is it possible? Or do you know other ways? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以/必须单独编译您的 Web 用户控件,然后可以通过“选择项目...”并找到 dll 将其添加到您的工具箱。
然后,您可以像拖拽任何其他控件一样将该控件直接拖到源中。
You can/must compile your web user control separately, then it is possible to add it to your toolbox via Choose Items... and locating the dll.
Then you can drag the control directly to source like you would any other control.