代码搜索:Label
找到约 10,000 项符合「Label」的源代码
代码结果 10,000
www.eeworm.com/read/128085/14315969
pas scaleviewportextexu.pas
unit ScaleViewportExtExU;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ComCtrls, StdCtrls, ExtCtrls, Buttons;
type
TForm1 = class(TForm)
www.eeworm.com/read/128085/14316346
pas drawtextu.pas
unit drawtextU;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ExtCtrls;
type
TForm1 = class(TForm)
Label1: TLabel;
Labe
www.eeworm.com/read/127981/14322833
java labeldemo.java
import java.awt.*;
import java.awt.event.*;
public class LabelDemo extends Frame
{
public LabelDemo (String str)
{
super(str);
super.setBounds(0,0,400,300);
}
//程序的入口
www.eeworm.com/read/127979/14323035
java ruleview.java
package asm;
import java.awt.*;
import java.awt.event.*;
import java.util.Vector;
/**
* Title: Artificial Stock Market
* Description: 人工模拟股市(来源:SFI的Swarm版本)的Java版本
* Copyright: Copyrig
www.eeworm.com/read/127943/14326614
java ourbutton.java
package sunw.demo.buttons;
import java.awt.*;
import java.awt.event.*;
import java.beans.*;
import java.io.Serializable;
import java.util.Vector;
/**
* A simple Java Beans button. OurButton is a
www.eeworm.com/read/127943/14326617
txt 24.txt
例程24-1
// ExplicitButtonBeanInfo.java
//包定义
package sunw.demo.buttons;
//引入相关类
import java.beans.*;
/**
* BeanInfo for an ExplicitButton.
*
* @see sunw.demo.buttons.ExplicitButton
*/
www.eeworm.com/read/127767/14336057
txt e898. changing the text of the approve button in a jfilechooser dialog.txt
The approve button is clicked by the user to indicate that the file has been selected. The default label for the approve button is either Open or Save, depending on the dialog type. This label can be
www.eeworm.com/read/127767/14336535
txt e741. setting the focus of a jtextfield component using a jlabel component.txt
This example associates a label with a text field using setLabelFor(). A mnemonic is set on the label. When the mnemonic keystroke is pressed, the text field will gain the focus.
In the following ex
www.eeworm.com/read/127767/14337376
txt e808. creating a jmenubar, jmenu, and jmenuitem component.txt
When the user selects a menu item, it fires an action event.
// Create the menu bar
JMenuBar menuBar = new JMenuBar();
// Create a menu
JMenu menu = new JMenu("Menu Label");
www.eeworm.com/read/127767/14337524
txt e798. showing tick-mark labels on a jslider component.txt
This example demonstrates how to display labels (numerical values) at the major ticks (see e797 Showing Tick Marks on a JSlider Component).
// Create a horizontal slider that moves left-to-right