⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 form1.cpp

📁 MONA是为数不多的C++语言编写的一个很小的操作系统
💻 CPP
字号:
// This file is in the public domain.
// There are no restrictions on any sort of usage of this file.

#include <gui/System/Console.h>
#include <gui/System/Mona/Forms/Application.h>
#include <gui/System/Mona/Forms/Form.h>
#include <gui/System/Mona/Forms/Label.h>

using namespace System;
using namespace System::Drawing;
using namespace System::Mona::Forms;

class Form1 : public Form
{
public:
	_P<Bitmap> bitmap;

    Form1(String fn, _P<Bitmap> bmp)
    {
    	this->set_Text(fn);
    	this->set_ClientSize(Size(bmp->get_Width(), bmp->get_Height()));
    	this->bitmap = bmp;
    }
    
    virtual ~Form1() {}
    
    virtual void OnPaint()
    {
    	Form::OnPaint();
    	
    	_P<Graphics> g = this->CreateGraphics();
    	g->DrawImage(this->bitmap, 0, 0);
    	g->Dispose();
    }

    static void Main(_A<String> args)
    {
    	if (args.get_Length() == 0)
    	{
    		Console::WriteLine("usage: BITMAP FILENAME.BMP/JPG");
    		return;
    	}
    	
    	_P<Bitmap> bmp = new Bitmap(args[0]);
    	if (bmp->get() == NULL)
    	{
    		Console::WriteLine("Can not open file!");
    		return;
    	}
    	
        Application::Run(new Form1(args[0], bmp));
    }
};

SET_MAIN_CLASS(Form1)

⌨️ 快捷键说明

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