javax.swing.JMenu.getFont()方法的使用及代码示例

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

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

JMenu.getFont介绍

暂无

代码示例

代码示例来源:origin: com.eas.platypus/platypus-js-forms

@ScriptFunction(jsDoc = FONT_JSDOC)
@Override
public Font getFont() {
  return super.getFont();
}

代码示例来源:origin: lycying/c2d-engine

mnAdd.setFont(new Font(mnAdd.getFont().getName(), Font.PLAIN, 24));
for (final b2FixtureDefModel m2 : data.fixtureDefModels) {
  JMenuItem item = new JMenuItem(m2.name, new ImageIcon(this.getClass().getResource("/info/u250/c2d/box2deditor/ui/res/" + m2.getClass().getSimpleName() + ".png")));
mntmDeleteFixture.setFont(new Font(mnAdd.getFont().getName(), Font.PLAIN, 24));
mntmDeleteFixture.setIcon(new ImageIcon(BodyDefPropertiesPanel.class.getResource("/info/u250/c2d/box2deditor/ui/res/remove-icon.png")));
if (fixtureList.getSelectedIndex() == -1) {

代码示例来源:origin: violetumleditor/violetumleditor

@Override
protected void configure()
{
  this.defaultGridColor = new Color(250, 250, 250);
  JMenuBar menuBar = new JMenuBar();
  this.basicMenubarBackground = menuBar.getBackground();
  this.basicMenubarForeground = menuBar.getForeground();
  this.basicMenubarFont = menuBar.getFont();
  JMenu menu = new JMenu();
  this.basicMenuBackground = menu.getBackground();
  this.basicMenuForeground = menu.getForeground();
  this.basicMenuFont = menu.getFont();
  JTextField textArea = new JTextField();
  this.basicWhite = textArea.getBackground();
  this.basicBlack = textArea.getForeground();
  JFrame frame = new JFrame();
  this.basicFrameBackground = frame.getBackground();
  frame.dispose();
  JProgressBar progressBar = new JProgressBar();
  this.basicProgressbarForeground = progressBar.getForeground();
  JTabbedPane pane = new JTabbedPane();
  this.basicTabbedPaneBackground = pane.getBackground();
}

代码示例来源:origin: monster860/FastDMM

menu.setFont(menu.getFont().deriveFont(Font.BOLD)); // Make it bold if is visible by the filter.
currPopup.add(menu);

相关文章