想在Java中使用Microsoft Outlook的地址卡视图功能
当我们单击 Microsoft Outlook 中的“联系人”时,会出现“地址卡”视图。我想在我的应用程序中使用相同的功能。我正在使用摇摆。但不知道该视图是否是运行时创建的一堆 JTable,或者 JTable 的某些单元格以这种方式突出显示?需要您的建议来创建这样的视图。
我附上了网上提供的示例图像。
There is Address Cards view when we click on Contacts in Microsoft Outlook. I want to use this same feature in my application. I am using swing. But didnt get whether the view is a bunch of JTables created at run time or some cells of JTable are highlighted that way? Need your suggestions to create view like this.
I have attached an example image available on the net.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最接近的核心 Swing 组件是
JList
< /a>,我认为,与setLayoutOrientation(JList.VERTICAL_WRAP)
和自定义渲染器。The core Swing component that comes closest is
JList
, I think, withsetLayoutOrientation(JList.VERTICAL_WRAP)
and a custom renderer.看看 l2fProd 中的组件......一个很棒的库
http://l2fprod.com/common/
look at the components in l2fProd ... a wonderful library
http://l2fprod.com/common/