SWT-如何更改 Windows 中的进度条颜色?
有没有办法改变 SWT 中 ProgressBar 条的颜色? .setForeground()
似乎不起作用。
如果没有办法以编程方式更改颜色,是否可以使用 WindowBuilder GUI 工具更改 ProgressBar 的颜色?
谢谢!
Is there a way to change the color of a ProgressBar's bars in SWT? .setForeground()
doesn't seem to work.
If there is not a way to change the color programmatically, is there a way to change ProgressBar's color using the WindowBuilder GUI tools?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 SWT 中有 3 种内置状态,每种状态都用一种颜色表示:
此状态不支持不确定的进度条样式 (
此状态将暂停不确定的进度条动画。
In SWT there are 3 built-in states, each represented by a color:
This state does not support an indeterminate progress bar style (SWT.INDETERMINATE).
This state will pause the indeterminate progress bar animation.
您无法使用 SWT 更改 Windows 上进度条的颜色。
You can't change the color of the progress bar on Windows using SWT.
您现在可以使用 JProgressBar.setForeground( Color )
You can now, using JProgressBar.setForeground( Color )