什么时候是说:“现在我需要创建一个用户控件!”的正确时机?
您何时考虑在 .NET 中创建用户控件?您是否有一些基本标准来从页面中排除代码并引入新的用户控件?
通常我倾向于遵循这些来决定是否需要用户控件:
- 当使用单独的用户控件使页面看起来更具可读性时
- 当表单的某些部分看起来像是从不同的页面一次又一次地使用时
When do you consider creating a user control in .NET? Do you have some basic criteria to exclude your code from the page and introduce a new user control?
Usually I tend to follow those to decide whether I need a user control or not:
- When the page seems to be more readable with a separate user control
- When some part of the form looks like to be used from different pages again and again
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想它遵循以下原则:
I suppose it follows the following:
我认为您提供的两个原因是任何人创建用户控件的主要原因。我实在想不出还有什么其他正当理由了……
I think the 2 reasons you provide are the main reasons anyone would create a user control. I really can't think of any other valid reasons...