本文介绍了如何重用表格?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要一种类似于旧表格的表格.如何使用较旧的表单创建新表单以与数据库的不同实体进行交互(如果创建了新表单,则应使用两个以上的控件)?

正如我们继承类一样,我们也可以继承Windows窗体吗?

如果是,那么该怎么办?如何?与其他任何类完全相同.

假设您从EntityForm开始,然后要创建表单ExtendedEntityForm,该表单向EntityForm添加了两个控件.为此,您只需执行以下操作:


 // 这是您的基本表单
公共  EntityForm:表格
{

}

// 这是您的扩展形式
公共  ExtendedEntityForm:EntityForm
{

} 



I need a form similar to an older one. How to use the older form to create a new form to interact with different entity of the database (the new form if created, shall be using two more controls) ?

Just as we inherit classes, can we inherit windows forms too?

If yes, then how to?

解决方案



这篇关于如何重用表格?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 00:04