代码搜索:JComboBox
找到约 2,565 项符合「JComboBox」的源代码
代码结果 2,565
www.eeworm.com/read/128604/5981624
java comboboxui.java
/* ComboBoxUI.java --
Copyright (C) 2002, 2003 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is free software; you can redistribute it and/or modify
it under th
www.eeworm.com/read/162614/5533606
java comboboxui.java
/* ComboBoxUI.java --
Copyright (C) 2002, 2003 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is free software; you can redistribute it and/or modify
it under th
www.eeworm.com/read/162519/5543138
java comboboxui.java
/* ComboBoxUI.java --
Copyright (C) 2002, 2003 Free Software Foundation, Inc.
This file is part of GNU Classpath.
GNU Classpath is free software; you can redistribute it and/or modify
it under th
www.eeworm.com/read/459633/7269623
class frame14$frame14_jcombobox5_actionadapter.class
www.eeworm.com/read/127767/14335853
txt e761. determining if the menu of a jcombobox component is visible.txt
// Create a read-only combobox
String[] items = {"item1", "item2"};
JComboBox cb = new JComboBox(items);
// Determine if the menu is visible
boolean isVisible = cb.isPopupVis
www.eeworm.com/read/127767/14336984
txt e959. using a jcombobox in a cell in a jtable component.txt
If the possible values allowed in a column must be one from a small fixed set of values, a combobox might be appropriate as the cell editor for that column. By using a combobox, it is impossible for t
www.eeworm.com/read/127767/14337580
txt e759. adding and removing an item in a jcombobox component.txt
There is no method for replacing an item. To replace an item, first remove the item and then insert the new one.
// Create a read-only combobox; the combobox is read-only
// in that it does
www.eeworm.com/read/126884/6011160
java solutionlistcombobox.java
package org.trinet.jiggle;
import java.util.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import org.trinet.jdbc.*;
import org.trinet.jasi
www.eeworm.com/read/127767/14336872
txt e763. displaying the menu in a jcombobox component using a keystroke if the selected item is not unique.txt
This example registers a key listener in a read-only combobox that displays the menu if the newly selected item is not unique.
// Create a read-only combobox
String[] items = {"Ant", "Ape",
www.eeworm.com/read/172754/5382238
java strokechooserpanel.java
/* ========================================================================
* JCommon : a free general purpose class library for the Java(tm) platform
* ===========================================