EAS隐藏分录上面的新增行、插入行、删除行 3个按钮原创
45人赞赏了该文章
663次浏览
编辑于2024年10月17日 11:26:04
/** * 隐藏分录上面的新增行、插入行、删除行 3个按钮 * @param table */ public static void hideHMDEntryButtons(KDTable table) { if (table.getParent() == null || table.getParent().getParent() == null) return; // 隐藏按钮 Component c = table.getParent().getParent(); if (c instanceof DetailPanel) { JPanel panel = (JPanel) c; // 获取controlPanel Component[] components = panel.getComponents(); for (int i = 0; i < components.length; i++) { Component component = components[i]; if ("controlPanel".equals(component.getName())) { component.setVisible(false); } } } }
赞 45
45人点赞
还没有人点赞,快来当第一个点赞的人吧!
打赏
0人打赏
还没有人打赏,快来当第一个打赏的人吧!
推荐阅读