JProgressBar查询

发布于 2024-09-16 21:03:46 字数 105 浏览 7 评论 0原文

是否可以从中间启动 JProgressBar。我知道这很奇怪,但我需要显示 20-80% 之间的更新,进度条应该在 0-20% 和 80-100% 之间不可见,数字 20 和 80 是运行时变量。

Is it possible to start JProgressBar from inbetween.I know this is wierd but I need to show the update between 20-80% and the progress bar should be invisible between 0-20% and 80-100% and the number 20 and 80 are run time variables.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

無心 2024-09-23 21:03:46

显示的值由底层数据模型 (BoundedRangeModel) 决定。您可以对 DefaultBoundedRangeModel 进行子类化(或者通过实现 BoundedRangeModel 从头开始​​创建),以便 getExtent() 始终返回 20-80% 之间的值。

新模型可以通过 JProgressBar 的构造函数或 setModel 方法提供给 JProgressBar。

The value displayed is dictated by the underlying data model (BoundedRangeModel). You could subclass the DefaultBoundedRangeModel (or create on from scratch by implementing BoundedRangeModel) so that the getExtent() always returns between 20-80%.

The new model can be supplied to JProgressBar via its constructor or setModel method.

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