zoukankan      html  css  js  c++  java
  • 吴裕雄--天生自然JAVA图形界面编程学习笔记:按钮组件JButton

    import javax.swing.JFrame ;
    import javax.swing.JButton ;
    import java.awt.Font ;
    public class JButtonDemo01{
        public static void main(String args[]){
            JFrame frame = new JFrame("Welcome To MLDN") ;    // 实例化窗体对象
            JButton but = new JButton("按我") ;     
            Font fnt = new Font("Serief",Font.BOLD,28);
            but.setFont(fnt) ;
            frame.add(but) ;
            frame.setSize(200,70) ;
            frame.setLocation(300,200) ;
            frame.setVisible(true) ;
        }
    };
    import javax.swing.JFrame ;
    import javax.swing.JButton ;
    import javax.swing.Icon ;
    import javax.swing.ImageIcon ;
    import java.io.File ;
    import java.awt.Font ;
    public class JButtonDemo02{
        public static void main(String args[]){
            JFrame frame = new JFrame("Welcome To MLDN") ;    // 实例化窗体对象
            String picPath = "d:" + File.separator + "mldn.gif" ;
            Icon icon = new ImageIcon(picPath) ;
            JButton but = new JButton(icon) ;     
            frame.add(but) ;
            frame.setSize(300,160) ;
            frame.setLocation(300,200) ;
            frame.setVisible(true) ;
        }
    };
  • 相关阅读:
    debounce
    react-xiguan
    备忘录
    ie导出问题
    umi 动态路由配置
    tsconfig
    关于vue 和react 中的hash与锚点冲突问题
    lodash
    pyplot绘图
    Numpy实现图像变换
  • 原文地址:https://www.cnblogs.com/tszr/p/12398783.html
Copyright © 2011-2022 走看看