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

📄 form1.cpp

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

// This file's encoding is UTF-8.

#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<Label> label1;

	Form1()
	{
		this->InitializeComponent();
	}

private:
	void InitializeComponent()
	{
        this->label1 = new Label();

        this->set_Location(Point(160, 64));
        this->set_ClientSize(Size(348, 148));
        this->set_Text("らべる");

        this->label1->set_Bounds(Rectangle(8, 8, 331, 132));
        this->label1->set_Text(
            " ★★ (´∇`)ヒゲポソ作のMonaは最高のOSを目指します! ★★\n"
            "\n"
            " ∧_∧  / ̄ ̄ ̄ ̄ ̄\n"
            "( ´∀`)< オマエモナー\n"
            "(    )  \_____\n"
            "| | |\n"
            "(__)_)\n"
            "\n"
            "               ∧_∧\n"
            "               (´∀` )\n"
            "''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''``````''''''''''''''''''");
        this->get_Controls()->Add(this->label1.get());
	}

public:
    static void Main(_A<String> args)
    {
        Application::Run(new Form1());
    }
};

SET_MAIN_CLASS(Form1)

⌨️ 快捷键说明

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