访问向导中 StartNavigationTemplate 中的控件

发布于 2024-09-28 17:12:41 字数 88 浏览 7 评论 0原文

Wizard.FindControl 未找到该控件。

我如何访问它,例如,我可以更改按钮上的文本?我使用第三方源作为按钮文本,因此无法使用全球化。

wizard.FindControl does not find the control.

How do I access it so, for example, I can change the text on a button? I'm using a 3rd party source for the button text so cannot use Globalization.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

緦唸λ蓇 2024-10-05 17:12:41

或者您可以尝试这样的操作:

Button btnNext = (Button)MyWizard.FindControl("StartNavigationTemplateContainerID$StartNextButton");

Or you could try something like this :

Button btnNext = (Button)MyWizard.FindControl("StartNavigationTemplateContainerID$StartNextButton");

蝶…霜飞 2024-10-05 17:12:41

直接使用查找控件很难找到控件。但您可以做的是为导航模板创建自己的模板(您需要从 iTemplate 继承)。其中有 3 个 startNavigationTemplate、StepNavigationTemplate 和 finish 导航模板。启动模板将显示步骤类型设置为“开始”等的向导步骤。值得注意的是,您可以为所有模板等设置模板。

关于向导控件的好文章是http://msdn.microsoft.com/en-us/magazine/cc163894.aspx

it is hard to find the controls directly using find control. But what you can do is create your own Template for the navigation templates (you will need to inherit from iTemplate). There are 3 of these startNavigationTemplate,StepNavigationTemplate and finish navigation template. Start template will display for the wizard steps which have stepType set as Start etc. Worth noting that you can set the template for all of the templates etc.

good article on wizard control is http://msdn.microsoft.com/en-us/magazine/cc163894.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文