本文整理了Java中javax.swing.JFrame.addFocusListener()
方法的一些代码示例,展示了JFrame.addFocusListener()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JFrame.addFocusListener()
方法的具体详情如下:
包路径:javax.swing.JFrame
类名称:JFrame
方法名:addFocusListener
暂无
代码示例来源:origin: org.orbisgis/orbisgis-view
/**
* The user click on the Job label The JobList component must be shown
* and the focus set on it
*/
public void onUserClickJobLabel() {
closeJobPopup();
jobPopup = new JFrame();
jobPopup.setUndecorated(true);
jobPopup.requestFocusInWindow();
//Create the jobList Panel
JobListPanel jobList = new JobListPanel();
jobList.setRenderer(new JobListCellRenderer());
jobList.setModel(runningJobs);
jobList.setBorder(BorderFactory.createEtchedBorder());
jobPopup.setContentPane(jobList);
//On lost focus this window must be closed
jobPopup.addFocusListener(
EventHandler.create(FocusListener.class, this,
"onJobPopupLostFocus", null, "focusLost"));
//On resize , this window must be moved
jobPopup.addComponentListener(
EventHandler.create(ComponentListener.class,
this, "onJobPopupResize", null, "componentResized"));
//Do size and place
jobPopup.setVisible(true);
jobPopup.pack();
onJobPopupResize();
}
代码示例来源:origin: stackoverflow.com
frame.setResizable(true);
frame.addFocusListener(new FocusListener() {
内容来源于网络,如有侵权,请联系作者删除!