问题:
在.NET中,您是否有任何标准可以使某个表单成为启动表单?
示例:
例如,如果我有一个基本的计算器程序,它有3个表格 即frmConfig,frmCalculator和frmProfile。
frmConfig
- 设置页面,包括我是应该自动舍入还是输出整数小数等。frmCalculator
- 主页面,计算器本身,您可以在其中执行所需的所有计算。frmProfile
- 登录页面,您可以在此处查看计算历史记录。备注:
这是否意味着启动表单always
应该是第一个看到的表单
什么时候应用程序运行?
Because for example I can make the frmConfig as the startup form then on OnLoad event of it it will hide itself then open the frmCalculator because frmCalculator depends on frmConfig's default setting.
为了使这个问题不广泛,我正在寻找设置启动表单的最常用方法,也许有一种标准方式?