📄 msgpanel.java~6~
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -