本文整理汇总了Java中java.awt.Label.setForeground方法的典型用法代码示例。如果您正苦于以下问题:Java Label.setForeground方法的具体用法?Java Label.setForeground怎么用?Java Label.setForeground使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类java.awt.Label
的用法示例。
在下文中一共展示了Label.setForeground方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: Database
import java.awt.Label; //导入方法依赖的package包/类
Database()
{
setSize(500,580);
setVisible(true);
setLayout(null);
setTitle("Students Record");
setResizable(false);
Font fn=new Font("Georgia",Font.BOLD,12);
setFont(fn);
setForeground(Color.black);
setBackground(Color.gray);
setLocation(600,130);
statusl=new Label("Status:");
statusl.setBounds(40,450,50,30);
orderIDl=new Label("Order ID:");
orderIDl.setBounds(190,450,70,30);
statust=new TextField();
statust.setBounds(90,450,90,30);
orderIDt=new TextField();
orderIDt.setBounds(260,450,90,30);
b1=new Button("ADD record");
b1.setBounds(40,500,100,50);
b2=new Button("DELETE record");
b2.setBounds(150,500,100,50);
b3=new Button("DISPLAY record");
b3.setBounds(260,500,100,50);
b4=new Button("UPDATE record");
b4.setBounds(370,500,100,50);
ta=new TextArea();
ta.setBounds(50,80,400,350);
ta.setBackground(Color.LIGHT_GRAY);
ta.setFocusable(false);
logout=new Button("Logout");
logout.setBounds(380,450,90,30);
logout.setForeground(Color.black);
logout.setBackground(Color.orange);
titlel=new Label("Sr.No Order ID Status");
titlel.setBounds(100,50,400,30);
titlel.setForeground(Color.ORANGE);
add(statusl);
add(orderIDl);
add(statust);
add(orderIDt);
add(b1);
add(b2);
add(b3);
add(b4);
add(logout);
add(ta);
add(titlel);
b1.addActionListener(this);
b2.addActionListener(this);
b3.addActionListener(this);
b4.addActionListener(this);
logout.addActionListener(this);
}
示例2: Login
import java.awt.Label; //导入方法依赖的package包/类
Login()
{
setSize(400,190);
setTitle("Login");
setVisible(true);
setResizable(false);
setLayout(null);
setLocation(400,270);
addWindowListener(new WindowAdapter() {
@Override
public void windowClosing(WindowEvent we)
{
if(!fg)
dispose();
}
});
//add(fg);
f=new Font("Georgia",Font.BOLD,14);
setFont(f);
tt1=new TextField();
tt1.setBounds(110,40,150,30);
tt2=new TextField();
tt2.setBounds(110,80,150,30);
tt2.setEchoChar('*');
ll1=new Label("Username:");
ll1.setBounds(25,40,80,20);
ll2=new Label("Password:");
ll2.setBounds(25,80,80,20);
ll3=new Label("");
ll3.setBounds(30,110,250,20);
ll3.setForeground(Color.red);
bb1=new Button("Login");
bb1.setBounds(280,125,100,50);
bb1.setForeground(Color.BLUE);
cb=new Checkbox("Remember Me",false);
cb.setBounds(40,130,150,20);
cb.setEnabled(true);
bb1.addActionListener(this);
add(tt1);
add(cb);
add(tt2);
add(ll3);
add(ll2);
add(ll1);
add(bb1);
}