在 GWT 中,如何创建 Style 对象并将其与 Widget 关联,而不使用 CSS 文件和 UiBinder
我只想创建一个 Style 对象并将其与一个 Widget 关联,所有这些都用 Java 编写。
可以创建这样的 Style 对象: 样式样式 = new Style();
可以使用以下方式将小部件与样式链接起来: FlowPanel 面板 = new FlowPanel(); panel.setStyleName("myStyle");
但是你需要“myStyle”存在于某些 CSS 文件中。
如果能够做到这一点那就太好了: 样式 style = new Style("myStyle");
我想用 Java 做所有事情并避免使用 CSS 或 UiBinder 文件。
谢谢 !
I would just like to create a Style object and associate it with a Widget, all in Java.
It is possible to create a Style object like that:
Style style = new Style();
It is possible to link a Widget with a Style using:
FlowPanel panel = new FlowPanel();
panel.setStyleName("myStyle");
But you need "myStyle" to exist in some CSS file.
It would be nice to be able to do:
Style style = new Style("myStyle");
I would like to do everything in Java and avoid the CSS or UiBinder file.
Thank you !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够通过使用访问 Style 元素
,然后操作其中的样式。
You should be able to access the Style element by using
and then manipulate the style there.