本文整理了Java中javax.swing.JMenuBar.setFocusable()
方法的一些代码示例,展示了JMenuBar.setFocusable()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JMenuBar.setFocusable()
方法的具体详情如下:
包路径:javax.swing.JMenuBar
类名称:JMenuBar
方法名:setFocusable
暂无
代码示例来源:origin: com.eas.platypus/platypus-js-forms
@ScriptFunction
@Override
public void setFocusable(boolean aValue) {
super.setFocusable(aValue);
}
代码示例来源:origin: net.sf.squirrel-sql.thirdparty-non-maven/napkinlaf
/**
* @return The <tt>JMenuBar</tt> displaying the appropriate system menu
* items.
*/
protected JMenuBar createMenuBar() {
menuBar = new SystemMenuBar();
menuBar.setFocusable(false);
menuBar.setBorderPainted(true);
menuBar.add(createMenu());
return menuBar;
}
代码示例来源:origin: net.sf.squirrel-sql.thirdparty-non-maven/toniclf
/**
* Returns the <code>JMenuBar</code> displaying the appropriate system
* menu items.
*/
protected JMenuBar createMenuBar()
{
menuBar = new SystemMenuBar();
menuBar.setOpaque(false);
menuBar.setFocusable(false);
menuBar.setBorderPainted(true);
menuBar.add(createMenu());
return menuBar;
}
代码示例来源:origin: com.github.insubstantial/substance
/**
* Returns the <code>JMenuBar</code> displaying the appropriate system menu
* items.
*
* @return <code>JMenuBar</code> displaying the appropriate system menu
* items.
*/
@Override
protected JMenuBar createSystemMenuBar() {
this.menuBar = new SubstanceMenuBar();
this.menuBar.setFocusable(false);
this.menuBar.setBorderPainted(true);
this.menuBar.add(this.createSystemMenu());
this.menuBar.setOpaque(false);
// support for RTL
this.menuBar.applyComponentOrientation(this.getComponentOrientation());
return this.menuBar;
}
代码示例来源:origin: org.java.net.substance/substance
/**
* Returns the <code>JMenuBar</code> displaying the appropriate system menu
* items.
*
* @return <code>JMenuBar</code> displaying the appropriate system menu
* items.
*/
protected JMenuBar createMenuBar() {
this.menuBar = new SubstanceMenuBar();
this.menuBar.setFocusable(false);
this.menuBar.setBorderPainted(true);
this.menuBar.add(this.createMenu());
this.menuBar.setOpaque(false);
// support for RTL
this.menuBar.applyComponentOrientation(this.rootPane
.getComponentOrientation());
this.markExtraComponent(this.menuBar, ExtraComponentKind.LEADING);
return this.menuBar;
}
代码示例来源:origin: com.github.insubstantial/substance
/**
* Returns the <code>JMenuBar</code> displaying the appropriate system menu
* items.
*
* @return <code>JMenuBar</code> displaying the appropriate system menu
* items.
*/
protected JMenuBar createMenuBar() {
this.menuBar = new SubstanceMenuBar();
this.menuBar.setFocusable(false);
this.menuBar.setBorderPainted(true);
this.menuBar.add(this.createMenu());
this.menuBar.setOpaque(false);
// support for RTL
this.menuBar.applyComponentOrientation(this.rootPane
.getComponentOrientation());
this.markExtraComponent(this.menuBar, ExtraComponentKind.LEADING);
return this.menuBar;
}
内容来源于网络,如有侵权,请联系作者删除!