更改 Wicket Wizard 扩展的样式
如何更改 Wicket 扩展向导 (org.apache.wicket.extensions.wizard) 的样式 (css)?有通用的方法吗?
谢谢
how can change the style (css) of the Wicket extension Wizard (org.apache.wicket.extensions.wizard)? Is there a common way?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Wizard.java旁边有Wizard.css。
只需覆盖 org.apache.wicket.extensions.wizard.Wizard.addDefaultCssStyle(IHeaderResponse) ,以便它使用您自己的 .css 并且应该可以工作。
There is Wizard.css next to Wizard.java.
Just override org.apache.wicket.extensions.wizard.Wizard.addDefaultCssStyle(IHeaderResponse) so that it uses your own .css and it should work.
我们可以通过覆盖向导子类中的向导构造函数来禁用默认 CSS。
前任:
we can disable the default css by overriding the Wizard constructor in your sub class of the wizard.
ex: