SWT-如何更改 Windows 中的进度条颜色?

发布于 2024-10-11 09:48:00 字数 159 浏览 4 评论 0原文

有没有办法改变 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 技术交流群。

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

发布评论

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

评论(3

诠释孤独 2024-10-18 09:48:00

在 SWT 中有 3 种内置状态,每种状态都用一种颜色表示:

progressBar.setState(SWT.ERROR); //Red Fill color. Useful when the task is aborted. 

此状态不支持不确定的进度条样式 (

progressBar.setState(SWT.PAUSED); //Yellow Fill color.

此状态将暂停不确定的进度条动画。

progressBar.setState(SWT.NORMAL); //Default state and color as controlled by OS.

In SWT there are 3 built-in states, each represented by a color:

progressBar.setState(SWT.ERROR); //Red Fill color. Useful when the task is aborted. 

This state does not support an indeterminate progress bar style (SWT.INDETERMINATE).

progressBar.setState(SWT.PAUSED); //Yellow Fill color.

This state will pause the indeterminate progress bar animation.

progressBar.setState(SWT.NORMAL); //Default state and color as controlled by OS.
谁把谁当真 2024-10-18 09:48:00

您无法使用 SWT 更改 Windows 上进度条的颜色。

You can't change the color of the progress bar on Windows using SWT.

給妳壹絲溫柔 2024-10-18 09:48:00

您现在可以使用 JProgressBar.setForeground( Color )

You can now, using JProgressBar.setForeground( Color )

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