SwingX - 个性化 JXDatePicker
我想个性化 JXDatePicker。更具体地说,我想在自己的位置创建一个自己的操作按钮。我尝试提取包含的 JButton,但是当我尝试将其添加到任何 JPanel 时,它只会添加空白空间。
JXDatePicker fDate = new JXDatePicker(new Date());
fDate.getEditor().setBorder(null);
fDate.getEditor().setEditable(false);
JButton eDate = (JButton) fDate.getComponent(1);
fDate.remove(eDate);
我认为这种方法无论如何都行不通,但目前我不知道有什么更好的方法。 有什么建议吗?
I want to personalize the JXDatePicker. More specifically I want to create an own own action button on a an own position. I tried to extract the included JButton but when I try to add it to any JPanel it only adds empty space.
JXDatePicker fDate = new JXDatePicker(new Date());
fDate.getEditor().setBorder(null);
fDate.getEditor().setEditable(false);
JButton eDate = (JButton) fDate.getComponent(1);
fDate.remove(eDate);
I don't think this approach would work anyway, but I don't know any better at the moment.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
找到了一个可行的解决方案,可能不是最干净的方法:
我在我看来的其他地方添加了 dateBtn 。
found a working solution, migt be not the cleanest way:
I added the dateBtn somewhere else in my view.