MButton.java
上传用户:njlgjx
上传日期:2022-08-07
资源大小:9105k
文件大小:1k
源码类别:

图形图象

开发平台:

Java

  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */
  5. package com.mwq.map.calendar;
  6. import java.awt.Color;
  7. import java.awt.Font;
  8. import java.awt.Insets;
  9. import javax.swing.JButton;
  10. /**
  11.  *
  12.  * @author Administrator
  13.  */
  14. public class MButton extends JButton {
  15.     public MButton(int day) {
  16.         super(day + "");
  17.         setBorderPainted(false);// 不绘制边框
  18.         setBackground(Color.WHITE);// 背景色为白色
  19.         setMargin(new Insets(0, 0, 0, 0));// 文本和边框间的距离为0
  20.         setFont(new Font("宋体", Font.BOLD, 14));// 设置字体及样式
  21.     }
  22. }