javax.swing.JPopupMenu.setBackground()方法的使用及代码示例

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

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

JPopupMenu.setBackground介绍

暂无

代码示例

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

@ScriptFunction
@Override
public void setBackground(Color aValue) {
  super.setBackground(aValue);
}

代码示例来源:origin: Exslims/MercuryTrade

public JPopupMenu getContextPanel() {
  JPopupMenu contextMenu = new JPopupMenu();
  contextMenu.setBackground(AppThemeColor.FRAME);
  contextMenu.setBorder(BorderFactory.createLineBorder(AppThemeColor.BORDER));
  contextMenu.setFont(REGULAR_FONT.deriveFont(scale * 16f));
  contextMenu.setForeground(AppThemeColor.TEXT_DEFAULT);
  return contextMenu;
}

代码示例来源:origin: atarw/material-ui-swing

@Override
public void installUI (JComponent c) {
  super.installUI (c);
  JPopupMenu popupMenu = (JPopupMenu) c;
  popupMenu.setBorder (UIManager.getBorder ("PopupMenu.border"));
  popupMenu.setBackground (UIManager.getColor ("PopupMenu.background"));
  popupMenu.setForeground (UIManager.getColor ("PopupMenu.foreground"));
}

代码示例来源:origin: cytoscape.coreplugins/attribute-browser

BORDER_FONT, Color.BLUE);
cellMenu.setBorder(popupBorder);
cellMenu.setBackground(Color.WHITE);
cellMenu.show(e.getComponent(), e.getX(), e.getY());

代码示例来源:origin: org.gosu-lang.gosu/gosu-lab

final JPopupMenu splash = new JPopupMenu();
splash.setOpaque( false );
splash.setBackground( new Color( 0, 0, 0, 0 ) );
splash.add( imagePanel );
int iconWidth = imagePanel.getImageIcon().getIconWidth();

代码示例来源:origin: org.gosu-lang.gosu/gosu-editor

_selectionListener = new TabPaneSelectionHandler( popup );
popup.setLayout( new BorderLayout() );
popup.setBackground(EditorUtilities.CONTROL );
Point pt = _tabContainer.getLocation();
pt = fitToScreen( pt, parent, _tabContainer );

代码示例来源:origin: org.gosu-lang.gosu/gosu-lab

_selectionListener = new TabPaneSelectionHandler( popup );
popup.setLayout( new BorderLayout() );
popup.setBackground( Scheme.active().getControl() );
Point pt = _tabContainer.getLocation();
pt = fitToScreen( pt, parent, _tabContainer );

代码示例来源:origin: Exslims/MercuryTrade

public JPopupMenu getContextMenu(AdrTreeNode<AdrComponentDescriptor> treeNode) {
  JPopupMenu contextMenu = this.componentsFactory.getContextPanel();
  contextMenu.setBackground(AppThemeColor.ADR_BG);
  contextMenu.setBorder(BorderFactory.createLineBorder(AppThemeColor.ADR_DEFAULT_BORDER));
  contextMenu.setForeground(AppThemeColor.TEXT_DEFAULT);

相关文章

JPopupMenu类方法