如何在C#和VS2010中实现视觉继承
我正在使用 VS2010 和 WinForms,并且需要大量表单来创建/更新数据实体。我该如何创建一个从中继承的基本表单(取消和确定按钮、实体参数等)?
I'm using VS2010 and WinForms, and needs lots of forms for creating/updating data entities. How can I go about creating a base form from which to inherit (Cancel and OK buttons, entity parameters, etc)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
图形界面(尤其是表单)中的继承并不是最容易实现的事情。您可能最好使用可重用的用户控件。
它与实体框架无关,而更多地与您正在使用的图形库类型有关(假设是 Windows 窗体,但也可能是 WPF 甚至 WebForms)。
Inheritance in graphical interfaces (especially forms) is not the easiest thing to achieve. You would probably be better off using reusable user controls.
It has nothing to do with Entity Framework, but more with the kind of graphical library you're using (assuming Windows Forms, but could be WPF or even WebForms).