javax.swing.JMenuBar.setFocusable()方法的使用及代码示例

x33g5p2x  于2022-01-21 转载在 其他  
字(2.8k)|赞(0)|评价(0)|浏览(92)

本文整理了Java中javax.swing.JMenuBar.setFocusable()方法的一些代码示例,展示了JMenuBar.setFocusable()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JMenuBar.setFocusable()方法的具体详情如下:
包路径:javax.swing.JMenuBar
类名称:JMenuBar
方法名:setFocusable

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;
}

相关文章