数据库表设计控制
.NET WinForm 库中是否有一个用于数据库设计的控件类似于 SQL Management Studio 的“创建视图”对话框中的控件。显示浮动在背景中的多个表格并允许在特定字段之间绘制线条的控件?类似于以下内容:
Is there a control in the .NET WinForm library for database design similar to the control found in the Create View dialog of SQL Management Studio. A control that displays multiple tables floating within a background and allows lines to be drawn between specific fields? Something like the following:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,没有一种控件可以将您想要的所有功能合并到一个预先存在的控件中。这就是用户控件的用途——您可以将一堆其他控件聚合到一个用户控件中,然后将其视为一个单元。
No, there is no control that does all of what you want combined into one pre-existing control. That's what user controls are for--you can aggregate a bunch of other controls into a user control and then treat it as a unit.