javax.swing.JCheckBox.setLabel()方法的使用及代码示例

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

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

JCheckBox.setLabel介绍

暂无

代码示例

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

  1. showFullImagePath.setToolTipText("Show the path Xmage is expecting for this card's image (only displays if missing)");
  2. showFullImagePath.setCursor(new java.awt.Cursor(java.awt.Cursor.DEFAULT_CURSOR));
  3. showFullImagePath.setLabel("Display image path for missing images");
  4. showFullImagePath.addActionListener(new java.awt.event.ActionListener() {
  5. public void actionPerformed(java.awt.event.ActionEvent evt) {

代码示例来源:origin: org.gephi/export-plugin-ui

  1. symmetricCheckBox.setLabel("Symmetric");

代码示例来源:origin: org.gephi/export-plugin-ui

  1. normalizeCheckBox.setLabel(org.openide.util.NbBundle.getMessage(UIExporterVNAPanel.class, "UIExporterGML.normalize.text")); // NOI18N

代码示例来源:origin: org.gephi/export-plugin-ui

  1. normalizeCheckBox.setLabel(org.openide.util.NbBundle.getMessage(UIExporterGMLPanel.class, "UIExporterGML.normalize.text")); // NOI18N

代码示例来源:origin: org.jflux/org.jflux.swing.services

  1. jCheckBox1.setLabel("Class names");
  2. jCheckBox1.addActionListener(new java.awt.event.ActionListener() {
  3. public void actionPerformed(java.awt.event.ActionEvent evt) {
  4. jCheckBox2.setLabel("Property keys");
  5. jCheckBox2.addActionListener(new java.awt.event.ActionListener() {
  6. public void actionPerformed(java.awt.event.ActionEvent evt) {
  7. jCheckBox3.setLabel("Property values");
  8. jCheckBox3.addActionListener(new java.awt.event.ActionListener() {
  9. public void actionPerformed(java.awt.event.ActionEvent evt) {
  10. jCheckBox4.setLabel("Dependencies");
  11. jCheckBox4.addActionListener(new java.awt.event.ActionListener() {
  12. public void actionPerformed(java.awt.event.ActionEvent evt) {

代码示例来源:origin: org.rwshop/org.rwshop.swing.common

  1. jCheckBox1.setLabel("Class names");
  2. jCheckBox1.addActionListener(new java.awt.event.ActionListener() {
  3. public void actionPerformed(java.awt.event.ActionEvent evt) {
  4. jCheckBox2.setLabel("Property keys");
  5. jCheckBox2.addActionListener(new java.awt.event.ActionListener() {
  6. public void actionPerformed(java.awt.event.ActionEvent evt) {
  7. jCheckBox3.setLabel("Property values");
  8. jCheckBox3.addActionListener(new java.awt.event.ActionListener() {
  9. public void actionPerformed(java.awt.event.ActionEvent evt) {
  10. jCheckBox4.setLabel("Dependencies");
  11. jCheckBox4.addActionListener(new java.awt.event.ActionListener() {
  12. public void actionPerformed(java.awt.event.ActionEvent evt) {

代码示例来源:origin: org.netbeans.modules/org-netbeans-modules-visualweb-webui-designtime

  1. selectValuesCheckBox.setLabel(bundle.getString("OptionsListPanel.checkbox.select.label"));
  2. selectValuesCheckBox.addItemListener(new java.awt.event.ItemListener() {
  3. public void itemStateChanged(java.awt.event.ItemEvent evt) {
  4. multipleChoiceCheckBox.setLabel(bundle.getString("OptionsListPanel.checkbox.multiple.label"));
  5. multipleChoiceCheckBox.addItemListener(new java.awt.event.ItemListener() {
  6. public void itemStateChanged(java.awt.event.ItemEvent evt) {

代码示例来源:origin: JGillam/burp-co2

  1. panel3.add(specialSpinner, new com.intellij.uiDesigner.core.GridConstraints(4, 1, 1, 1, com.intellij.uiDesigner.core.GridConstraints.ANCHOR_WEST, com.intellij.uiDesigner.core.GridConstraints.FILL_HORIZONTAL, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_WANT_GROW, com.intellij.uiDesigner.core.GridConstraints.SIZEPOLICY_FIXED, null, null, null, 0, false));
  2. restrictSpecialsCheckBox = new JCheckBox();
  3. restrictSpecialsCheckBox.setLabel("Restrict To:");
  4. restrictSpecialsCheckBox.setText("Restrict To:");
  5. restrictSpecialsCheckBox.setToolTipText("Unselect to allow any printable ASCII non-alphanum chars");

相关文章

JCheckBox类方法