ASP.NET MultiView 按 ID?
有没有办法通过 ID 而不是索引来设置 MultiView 中的活动视图?
像这样的东西吗?
multiviewProgress.Views["step3"].SetToActiveView();
Is there a way to set the active view in a MultiView by ID rather than by index?
Something like this?
multiviewProgress.Views["step3"].SetToActiveView();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信你可以这样做:
其中 nameOfView 是设计时给出的 ID。此示例向您展示了如何执行此操作。
I believe you can just do something like this:
where nameOfView is the ID given at design time. This example shows you how to do it.