msgpanel.java~6~

来自「jbuilder开发的赌马竞猜系统」· JAVA~6~ 代码 · 共 40 行

JAVA~6~
40
字号
package betgame;import java.awt.*;import com.borland.jbcl.layout.*;import javax.swing.*;/** * <p>Title: 赛马竞猜游戏</p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2007</p> * <p>Company: 小魔鬼工作室</p> * @author not attributable * @version 1.0 */public class MsgPanel extends JPanel {  String msg;  JLabel jL1 = new JLabel();  public MsgPanel(String msg)  {   try    {    this.msg=msg;    jbInit();    }    catch(Exception ex){    ex.printStackTrace();    }  }  void jbInit() throws Exception {    jL1.setFont(new java.awt.Font("Dialog", 0, 20));    jL1.setForeground(Color.red);    jL1.setText(msg);    jL1.setHorizontalAlignment(SwingConstants.CENTER);    jL1.setBounds(new Rectangle(75, 68, 235, 133));    this.setLayout(null);    this.add(jL1, null);  }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?