[Share Experiences] 【水帖】水一个Live CD的帖子
Tofloor
poster avatar
gfdgd_xi
deepin
Ecological co-builder
2022-06-01 06:39
Author

此为水帖,放张目前搞出来的图(还没有做完)
tail
桌面效果
VMware 缩放

Reply Favorite View the author
All Replies
神末shenmo
deepin
Spark-App
Q&A Team
2022-06-01 06:54
#1

对了,livecd的版本信息可以修改哦

看这里

https://bbs.deepin.org/post/237500

Reply View the author
gfdgd_xi
deepin
Ecological co-builder
2022-06-02 03:50
#2
神末shenmo

对了,livecd的版本信息可以修改哦

看这里

https://bbs.deepin.org/post/237500

好的,full版本会改一下试试
不过目前晒的install版就不会修改live cd信息
tail

Reply View the author
xuqi
deepin testing team
2022-06-02 04:15
#3

学习一下~

Reply View the author
RX9070
deepin
2022-07-12 04:09
#4
package game;
import javax.imageio.ImageIO;
import javax.swing.*;
import java.awt.*;
import java.awt.image.BufferedImage;
//游戏界⾯
public class BirdGame extends JPanel {
//背景图⽚
    BufferedImage background;
//初始化游戏
    public BirdGame() throws Exception {
//初始化背景图⽚
        background = ImageIO.read(getClass().getResource("/resources/bg.png"));
}
//绘制界⾯
    public void paint(Graphics g){
//绘制背景
        g.drawImage(background,0,0, null);
}
//启动⽅法
    public static void main(String[] args) throws Exception {
        JFrame frame = new JFrame();//创建窗⼝,JFrame是屏幕上window的对象,能放⼤、缩⼩、关闭。
        BirdGame game = new BirdGame();
        frame.add(game);
        frame.setSize(440,670);
        frame.setLocationRelativeTo(null);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);//设置窗⼝
        frame.setVisible(true);//显⽰窗⼝
}
Reply View the author
RX9070
deepin
2022-07-12 04:14
#5
Reply View the author