如何在java应用程序中设置垂直选取框?
我正在使用 swing 在 java 中创建一个应用程序。因为我有一个字符串数组,我尝试使用 html marquee 标签从上到下一一滚动所有字符串。但是 marquee 标签在面板中不支持。我怎样才能实现它。有人可以建议我吗? 提前致谢
I am creating one application in java using swing.In that i have an array of String, I try to use html marquee tag to scroll all the strings one by one from top to bottom.But the marquee tag doesn't support in the panel. How can i acheive it.Can any one suggest me?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不相信 Swing 支持开箱即用的文本滚动。
这篇最近在 Free the Pixel 上发布的博客文章包含代码做一些漂亮的文字动画。它可能有用。
I don't believe Swing supports text scrolling out of the box.
This recent blog post at Free the Pixel has code to do some nice text animation. It might be useful.
您可以通过使用线程编写自己的代码来做到这一点。
Marquee 类实现 Runnable
{
螺纹t;
u can do it by writing your own code using thread.
class Marquee implements Runnable
{
Thread t;