如何向 ASP.NET 向导添加跳过按钮?
我知道如何以编程方式跳过步骤,但我也需要“跳过”按钮。
I know how can I skip steps programmatically but I need "Skip" button too.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我知道如何以编程方式跳过步骤,但我也需要“跳过”按钮。
I know how can I skip steps programmatically but I need "Skip" button too.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
如果您希望向向导控件添加新按钮,则需要通过创建自定义
WizardFinishNavigationTemplate (这是负责向导最后一步时显示的控件的模板)
内部类 CustomWizardStartNavigationTemplate :CustomWizardNavigationTemplateBase
{
#region ITemplate 成员
干杯
尼尔
If you wish to add a new button to the wizard control then you will need to replace the existing Templates by creating custom
WizardFinishNavigationTemplate (this is the template which is responsible for the controls which are displayed when on the Last step of the wizard)
internal class CustomWizardStartNavigationTemplate : CustomWizardNavigationTemplateBase
{
#region ITemplate Members
cheers
Niall