为什么需要将 WizardStep 对象表示为 …?
这可能是一个愚蠢的问题,但仍然..
Wizard 控件由代表向导的单个步骤的WizardStep 对象的集合组成。 但为什么这些 WizardStep 对象表示为控件(因此它们需要 runat=Server 属性)?它们不能像 ListItem 一样进行处理吗?对象,不需要 runat 属性,而是通过 Parent_Control.Item 属性访问?
谢谢
This is probably a stupid question, but still..
A Wizard control is made up of a collection of WizardStep objects that represent single steps of a wizard. But why are these WizardStep object represented as controls ( thus they require runat=Server attribute )?Couldn’t they be handled similarly to ListItem objects, which don’t require runat attribute, but are instead accessed via Parent_Control.Item property?
thanx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
WizardStep 控件可以是其他控件的容器,这使得它们非常重要。 而 ListItems 只是由字符串和 ID 组成的简单对象,仅此而已。
WizardStep controls can be containers for other controls, which makes them non-trivial. Whereas ListItems are just simple obects made up of a string and an ID and not much else.