代码搜索:Setting

找到约 10,000 项符合「Setting」的源代码

代码结果 10,000
www.eeworm.com/read/127767/14335906

txt e366. getting and setting properties.txt

String string = properties.getProperty("a.b"); properties.setProperty("a.b", "new value");
www.eeworm.com/read/127767/14336680

txt e560. setting the icon for a frame.txt

// Create frame String title = "Frame Title"; Frame frame = new Frame(title); // Set icon Image icon = Toolkit.getDefaultToolkit().getImage("icon.gif"); frame.setIconIma
www.eeworm.com/read/127767/14337106

txt e336. setting the default locale.txt

There are two ways to change the default locale. The first is to set it on the command line: > java -Duser.language=2-char-language-code -Duser.region=2-char-country-code MyApp // Set
www.eeworm.com/read/127767/14337199

txt e873. creating and setting a border.txt

There are several types of borders available, each represented by its own class. A border can be created using the class' constructor or using a border factory. The border factory is the typical metho
www.eeworm.com/read/127767/14337211

txt e843. setting a tool tip.txt

If a JComponent such as a JButton is created using an action, the component will be created with the tool tip text in the action (see e855 Creating an Action). However, if the action does not have any
www.eeworm.com/read/127767/14337617

txt e690. setting a mnemonic for buttons.txt

JButton button = new JButton("Button"); button.setMnemonic('B'); JCheckBox checkBox = new JCheckBox("CheckBox"); checkBox.setMnemonic('C');
www.eeworm.com/read/127767/14337654

txt e691. setting a mnemonic for a menu.txt

At least one menu in a menu bar should have a mnemonic. This makes all the menus and menu items accessible. JMenu menu = new JMenu("Menu"); menu.setMnemonic('M');
www.eeworm.com/read/332916/12717353

asm uartapi.asm

//============================================================================= // Program: UartAPI.asm V1.1 // Description: This program send 0x0100 sample data(0x0000~0x00FF) to EchoServer //