在 GWT 中,如何创建 Style 对象并将其与 Widget 关联,而不使用 CSS 文件和 UiBinder

发布于 2024-11-03 22:17:16 字数 361 浏览 0 评论 0原文

我只想创建一个 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 技术交流群。

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

发布评论

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

评论(1

や莫失莫忘 2024-11-10 22:17:16

您应该能够通过使用访问 Style 元素

someUiObject.getElement().getStyle()

,然后操作其中的样式。

You should be able to access the Style element by using

someUiObject.getElement().getStyle()

and then manipulate the style there.

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