javax.swing.JToolBar.setToolTipText()方法的使用及代码示例

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

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

JToolBar.setToolTipText介绍

暂无

代码示例

代码示例来源:origin: magefree/mage

tbColor.setToolTipText("Hold the ALT-key while clicking to deselect all other colors or hold the CTRL-key to select only all other colors.");
tbColor.setBorderPainted(false);
tbColor.setName(""); // NOI18N
tbTypes.setToolTipText("Hold the ALT-key while clicking to deselect all other card types or hold the CTRL-key to only select all other card types."); // NOI18N
tbTypes.setPreferredSize(new java.awt.Dimension(732, 27));
tbRarities.setToolTipText("Hold the ALT-key while clicking to deselect all other card rarities or hold the CTRL-key to only select all other card rarities.");

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

@ScriptFunction
@Override
public void setToolTipText(String aValue) {
  super.setToolTipText(aValue);
}

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

@ScriptFunction
@Override
public void setToolTipText(String text) {
  super.setToolTipText(text);
  gapLabel.setToolTipText(text);
  iconLabel.setToolTipText(text);
  decorated.setToolTipText(text);
  extraTools.setToolTipText(text);
}

相关文章

JToolBar类方法