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

📄 filewindow.cpp

📁 MONA是为数不多的C++语言编写的一个很小的操作系统
💻 CPP
字号:
// This file's encoding is UTF-8.

#include "FileWindow.h"
#include <gui/System/Mona/Forms/ControlPaint.h>

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

FileWindow::FileWindow()
{
	this->set_Bounds(Rectangle(80, 80, 510, 340));
	this->set_Text("ふぁいるまね~じゃ");
	this->set_Opacity(0.8);
	
	this->browser = new FileBrowser();
	this->browser->set_Size(this->get_ClientSize());
	this->get_Controls()->Add(this->browser.get());
}

void FileWindow::Create()
{
	Form::Create();
	this->_object->__internal2 = true;
}

void FileWindow::set_Directory(String path)
{
	this->set_Text(path);
	this->browser->ReadDirectory(path);
}

⌨️ 快捷键说明

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