JList:Horizontal_WRAP 安装了吗?
嘿,..我想在 jList 中显示带有名称的图片,我知道它也在 JPanel 中,但我现在使用 jList,没关系..
我的问题是为什么jlist 不适合仅在 2 个水平“单元格”中容纳图像,然后向下一行?
抱歉,我的英语很差,我不知道如何更好地描述它,但是看看图片,为什么 jlist 不将例如第三张图片设置在第二张图片旁边?
Hey,.. i wanna show pictures with names onit in a jList, i know it get's also in a JPanel but i'm now using a jList, doesn't matter..
My question is why does the jlist don't fit the images only in 2 horizontal 'cells' and then go one row down?
sry my english is bad and i don't know how to describe it better, but look on the picture, why does the jlist dont set the e.g. 3rd picture right next to the 2nd?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
JList.HORIZONTAL_WRAP
在ListDialog
JWS 演示,如中所述初始化列表。我怀疑存在布局问题,但您可以将您的代码与那里找到的示例进行比较。JList.HORIZONTAL_WRAP
works correctly in theListDialog
JWS demo, as described in Initializing a List. I suspect a layout problem, but you might compare your code to the examples found there.如果使用 HORIZONTAL_WRAP,则可以使用 setVisibleRowCount 调整列数。如果您希望它们自动适应列表的宽度,请使用 0 或负数。
If you use HORIZONTAL_WRAP you can adjust the number of columns with setVisibleRowCount. If you want them automatically fitted to the width of the list, use 0 or something negative.