📄 formmain.h
字号:
this->runToolStripMenuItem = (gcnew System::Windows::Forms::ToolStripMenuItem());
this->helpToolStripMenuItem = (gcnew System::Windows::Forms::ToolStripMenuItem());
this->howToToolStripMenuItem = (gcnew System::Windows::Forms::ToolStripMenuItem());
this->contentToolStripMenuItem = (gcnew System::Windows::Forms::ToolStripMenuItem());
this->aboutMeToolStripMenuItem = (gcnew System::Windows::Forms::ToolStripMenuItem());
this->menuStripMain = (gcnew System::Windows::Forms::MenuStrip());
this->openFileDlg = (gcnew System::Windows::Forms::OpenFileDialog());
this->saveFileDlg = (gcnew System::Windows::Forms::SaveFileDialog());
this->tableLayoutPanel1 = (gcnew System::Windows::Forms::TableLayoutPanel());
this->splitContainerH = (gcnew System::Windows::Forms::SplitContainer());
this->splitContainerV = (gcnew System::Windows::Forms::SplitContainer());
this->tabCtrlSide = (gcnew System::Windows::Forms::TabControl());
this->tabPageFiles = (gcnew System::Windows::Forms::TabPage());
this->splitContainer1 = (gcnew System::Windows::Forms::SplitContainer());
this->treeViewFile = (gcnew System::Windows::Forms::TreeView());
this->imageListFile = (gcnew System::Windows::Forms::ImageList(this->components));
this->tableLayoutPanelFile = (gcnew System::Windows::Forms::TableLayoutPanel());
this->textBoxFileFilter = (gcnew System::Windows::Forms::TextBox());
this->listViewFile = (gcnew System::Windows::Forms::ListView());
this->tabControlCode = (gcnew System::Windows::Forms::TabControl());
this->tabPage4 = (gcnew System::Windows::Forms::TabPage());
this->codeTextBox = (gcnew System::Windows::Forms::RichTextBox());
this->tabControlBtm = (gcnew System::Windows::Forms::TabControl());
this->tabPageOutput = (gcnew System::Windows::Forms::TabPage());
this->textBoxOutput = (gcnew System::Windows::Forms::TextBox());
this->tabPageErrorList = (gcnew System::Windows::Forms::TabPage());
this->listBoxErrors = (gcnew System::Windows::Forms::ListBox());
this->statusStrip1 = (gcnew System::Windows::Forms::StatusStrip());
this->toolStripStatusLabelMain = (gcnew System::Windows::Forms::ToolStripStatusLabel());
this->toolStripStatusLabelRow = (gcnew System::Windows::Forms::ToolStripStatusLabel());
this->toolStripStatusLabelCol = (gcnew System::Windows::Forms::ToolStripStatusLabel());
this->toolStripMain = (gcnew System::Windows::Forms::ToolStrip());
this->toolStripButton1 = (gcnew System::Windows::Forms::ToolStripButton());
this->toolStripButton2 = (gcnew System::Windows::Forms::ToolStripButton());
this->toolStripButton3 = (gcnew System::Windows::Forms::ToolStripButton());
this->toolStripButton4 = (gcnew System::Windows::Forms::ToolStripButton());
this->toolStripSeparator1 = (gcnew System::Windows::Forms::ToolStripSeparator());
this->toolStripButton5 = (gcnew System::Windows::Forms::ToolStripButton());
this->toolStripButton6 = (gcnew System::Windows::Forms::ToolStripButton());
this->toolStripButton7 = (gcnew System::Windows::Forms::ToolStripButton());
this->toolStripSeparator2 = (gcnew System::Windows::Forms::ToolStripSeparator());
this->toolStripButton8 = (gcnew System::Windows::Forms::ToolStripButton());
this->toolStripButton9 = (gcnew System::Windows::Forms::ToolStripButton());
this->toolStripSeparator3 = (gcnew System::Windows::Forms::ToolStripSeparator());
this->toolStripButtonCompile = (gcnew System::Windows::Forms::ToolStripButton());
this->toolStripButtonRun = (gcnew System::Windows::Forms::ToolStripButton());
this->toolStripSeparator4 = (gcnew System::Windows::Forms::ToolStripSeparator());
this->toolStripLabel1 = (gcnew System::Windows::Forms::ToolStripLabel());
this->toolStripComboBoxFind = (gcnew System::Windows::Forms::ToolStripComboBox());
this->toolStripButtonFind = (gcnew System::Windows::Forms::ToolStripButton());
this->menuStripMain->SuspendLayout();
this->tableLayoutPanel1->SuspendLayout();
this->splitContainerH->Panel1->SuspendLayout();
this->splitContainerH->Panel2->SuspendLayout();
this->splitContainerH->SuspendLayout();
this->splitContainerV->Panel1->SuspendLayout();
this->splitContainerV->Panel2->SuspendLayout();
this->splitContainerV->SuspendLayout();
this->tabCtrlSide->SuspendLayout();
this->tabPageFiles->SuspendLayout();
this->splitContainer1->Panel1->SuspendLayout();
this->splitContainer1->Panel2->SuspendLayout();
this->splitContainer1->SuspendLayout();
this->tableLayoutPanelFile->SuspendLayout();
this->tabControlCode->SuspendLayout();
this->tabPage4->SuspendLayout();
this->tabControlBtm->SuspendLayout();
this->tabPageOutput->SuspendLayout();
this->tabPageErrorList->SuspendLayout();
this->statusStrip1->SuspendLayout();
this->toolStripMain->SuspendLayout();
this->SuspendLayout();
//
// fileToolStripMenuItem
//
this->fileToolStripMenuItem->DropDownItems->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^ >(7) {this->newToolStripMenuItem,
this->openToolStripMenuItem, this->toolStripMenuItem1, this->saveToolStripMenuItem, this->saveAsToolStripMenuItem, this->toolStripMenuItem2,
this->exitToolStripMenuItem});
this->fileToolStripMenuItem->Name = L"fileToolStripMenuItem";
this->fileToolStripMenuItem->Size = System::Drawing::Size(59, 20);
this->fileToolStripMenuItem->Text = L"文件(&F)";
//
// newToolStripMenuItem
//
this->newToolStripMenuItem->Name = L"newToolStripMenuItem";
this->newToolStripMenuItem->Size = System::Drawing::Size(106, 22);
this->newToolStripMenuItem->Text = L"新建";
this->newToolStripMenuItem->Click += gcnew System::EventHandler(this, &FormMain::newToolStripMenuItem_Click);
//
// openToolStripMenuItem
//
this->openToolStripMenuItem->Name = L"openToolStripMenuItem";
this->openToolStripMenuItem->Size = System::Drawing::Size(106, 22);
this->openToolStripMenuItem->Text = L"打开";
this->openToolStripMenuItem->Click += gcnew System::EventHandler(this, &FormMain::openToolStripMenuItem_Click);
//
// toolStripMenuItem1
//
this->toolStripMenuItem1->Name = L"toolStripMenuItem1";
this->toolStripMenuItem1->Size = System::Drawing::Size(103, 6);
//
// saveToolStripMenuItem
//
this->saveToolStripMenuItem->Name = L"saveToolStripMenuItem";
this->saveToolStripMenuItem->Size = System::Drawing::Size(106, 22);
this->saveToolStripMenuItem->Text = L"保存";
this->saveToolStripMenuItem->Click += gcnew System::EventHandler(this, &FormMain::saveToolStripMenuItem_Click);
//
// saveAsToolStripMenuItem
//
this->saveAsToolStripMenuItem->Name = L"saveAsToolStripMenuItem";
this->saveAsToolStripMenuItem->Size = System::Drawing::Size(106, 22);
this->saveAsToolStripMenuItem->Text = L"另存为";
this->saveAsToolStripMenuItem->Click += gcnew System::EventHandler(this, &FormMain::saveAsToolStripMenuItem_Click);
//
// toolStripMenuItem2
//
this->toolStripMenuItem2->Name = L"toolStripMenuItem2";
this->toolStripMenuItem2->Size = System::Drawing::Size(103, 6);
//
// exitToolStripMenuItem
//
this->exitToolStripMenuItem->Name = L"exitToolStripMenuItem";
this->exitToolStripMenuItem->Size = System::Drawing::Size(106, 22);
this->exitToolStripMenuItem->Text = L"退出";
this->exitToolStripMenuItem->Click += gcnew System::EventHandler(this, &FormMain::exitToolStripMenuItem_Click);
//
// editToolStripMenuItem
//
this->editToolStripMenuItem->DropDownItems->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^ >(11) {this->undoToolStripMenuItem,
this->redoToolStripMenuItem, this->toolStripMenuItem3, this->cutToolStripMenuItem, this->copyToolStripMenuItem, this->pasteToolStripMenuItem,
this->deleteToolStripMenuItem, this->toolStripMenuItem4, this->findAndReplaceToolStripMenuItem, this->toolStripMenuItem5, this->setIDEToolStripMenuItem});
this->editToolStripMenuItem->Name = L"editToolStripMenuItem";
this->editToolStripMenuItem->Size = System::Drawing::Size(59, 20);
this->editToolStripMenuItem->Text = L"编辑(&E)";
//
// undoToolStripMenuItem
//
this->undoToolStripMenuItem->Name = L"undoToolStripMenuItem";
this->undoToolStripMenuItem->Size = System::Drawing::Size(148, 22);
this->undoToolStripMenuItem->Text = L"撤销";
this->undoToolStripMenuItem->Click += gcnew System::EventHandler(this, &FormMain::undoToolStripMenuItem_Click);
//
// redoToolStripMenuItem
//
this->redoToolStripMenuItem->Name = L"redoToolStripMenuItem";
this->redoToolStripMenuItem->Size = System::Drawing::Size(148, 22);
this->redoToolStripMenuItem->Text = L"重做";
this->redoToolStripMenuItem->Click += gcnew System::EventHandler(this, &FormMain::redoToolStripMenuItem_Click);
//
// toolStripMenuItem3
//
this->toolStripMenuItem3->Name = L"toolStripMenuItem3";
this->toolStripMenuItem3->Size = System::Drawing::Size(145, 6);
//
// cutToolStripMenuItem
//
this->cutToolStripMenuItem->Name = L"cutToolStripMenuItem";
this->cutToolStripMenuItem->Size = System::Drawing::Size(148, 22);
this->cutToolStripMenuItem->Text = L"剪切(&C)";
this->cutToolStripMenuItem->Click += gcnew System::EventHandler(this, &FormMain::cutToolStripMenuItem_Click);
//
// copyToolStripMenuItem
//
this->copyToolStripMenuItem->Name = L"copyToolStripMenuItem";
this->copyToolStripMenuItem->Size = System::Drawing::Size(148, 22);
this->copyToolStripMenuItem->Text = L"复制(&C)";
this->copyToolStripMenuItem->Click += gcnew System::EventHandler(this, &FormMain::copyToolStripMenuItem_Click);
//
// pasteToolStripMenuItem
//
this->pasteToolStripMenuItem->Name = L"pasteToolStripMenuItem";
this->pasteToolStripMenuItem->Size = System::Drawing::Size(148, 22);
this->pasteToolStripMenuItem->Text = L"粘贴(&P)";
this->pasteToolStripMenuItem->Click += gcnew System::EventHandler(this, &FormMain::pasteToolStripMenuItem_Click);
//
// deleteToolStripMenuItem
//
this->deleteToolStripMenuItem->Name = L"deleteToolStripMenuItem";
this->deleteToolStripMenuItem->Size = System::Drawing::Size(148, 22);
this->deleteToolStripMenuItem->Text = L"删除(&D)";
this->deleteToolStripMenuItem->Click += gcnew System::EventHandler(this, &FormMain::deleteToolStripMenuItem_Click);
//
// toolStripMenuItem4
//
this->toolStripMenuItem4->Name = L"toolStripMenuItem4";
this->toolStripMenuItem4->Size = System::Drawing::Size(145, 6);
//
// findAndReplaceToolStripMenuItem
//
this->findAndReplaceToolStripMenuItem->Name = L"findAndReplaceToolStripMenuItem";
this->findAndReplaceToolStripMenuItem->Size = System::Drawing::Size(148, 22);
this->findAndReplaceToolStripMenuItem->Text = L"查找与替换(&F)";
this->findAndReplaceToolStripMenuItem->Click += gcnew System::EventHandler(this, &FormMain::findAndReplaceToolStripMenuItem_Click);
//
// toolStripMenuItem5
//
this->toolStripMenuItem5->Name = L"toolStripMenuItem5";
this->toolStripMenuItem5->Size = System::Drawing::Size(145, 6);
//
// setIDEToolStripMenuItem
//
this->setIDEToolStripMenuItem->Name = L"setIDEToolStripMenuItem";
this->setIDEToolStripMenuItem->Size = System::Drawing::Size(148, 22);
this->setIDEToolStripMenuItem->Text = L"IDE首选项";
this->setIDEToolStripMenuItem->Click += gcnew System::EventHandler(this, &FormMain::setIDEToolStripMenuItem_Click);
//
// buildToolStripMenuItem
//
this->buildToolStripMenuItem->DropDownItems->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^ >(2) {this->compileToolStripMenuItem,
this->runToolStripMenuItem});
this->buildToolStripMenuItem->Name = L"buildToolStripMenuItem";
this->buildToolStripMenuItem->Size = System::Drawing::Size(59, 20);
this->buildToolStripMenuItem->Text = L"运行(&R)";
//
// compileToolStripMenuItem
//
this->compileToolStripMenuItem->Name = L"compileToolStripMenuItem";
this->compileToolStripMenuItem->Size = System::Drawing::Size(118, 22);
this->compileToolStripMenuItem->Text = L"编译";
this->compileToolStripMenuItem->Click += gcnew System::EventHandler(this, &FormMain::compileToolStripMenuItem_Click);
//
// runToolStripMenuItem
//
this->runToolStripMenuItem->Name = L"runToolStripMenuItem";
this->runToolStripMenuItem->ShortcutKeyDisplayString = L"";
this->runToolStripMenuItem->Size = System::Drawing::Size(118, 22);
this->runToolStripMenuItem->Text = L"解释运行";
this->runToolStripMenuItem->Click += gcnew System::EventHandler(this, &FormMain::runToolStripMenuItem_Click);
//
// helpToolStripMenuItem
//
this->helpToolStripMenuItem->DropDownItems->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^ >(3) {this->howToToolStripMenuItem,
this->contentToolStripMenuItem, this->aboutMeToolStripMenuItem});
this->helpToolStripMenuItem->Name = L"helpToolStripMenuItem";
this->helpToolStripMenuItem->Size = System::Drawing::Size(59, 20);
this->helpToolStripMenuItem->Text = L"帮助(&H)";
//
// howToToolStripMenuItem
//
this->howToToolStripMenuItem->Name = L"howToToolStripMenuItem";
this->howToToolStripMenuItem->Size = System::Drawing::Size(160, 22);
this->howToToolStripMenuItem->Text = L"快速入门";
//
// contentToolStripMenuItem
//
this->contentToolStripMenuItem->Name = L"contentToolStripMenuItem";
this->contentToolStripMenuItem->Size = System::Drawing::Size(160, 22);
this->contentToolStripMenuItem->Text = L"LeastL IDE 帮助";
//
// aboutMeToolStripMenuItem
//
this->aboutMeToolStripMenuItem->Name = L"aboutMeToolStripMenuItem";
this->aboutMeToolStripMenuItem->Size = System::Drawing::Size(160, 22);
this->aboutMeToolStripMenuItem->Text = L"关于 LeastL IDE";
this->aboutMeToolStripMenuItem->Click += gcnew System::EventHandler(this, &FormMain::aboutMeToolStripMenuItem_Click);
//
// menuStripMain
//
this->menuStripMain->Items->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^ >(4) {this->fileToolStripMenuItem,
this->editToolStripMenuItem, this->buildToolStripMenuItem, this->helpToolStripMenuItem});
this->menuStripMain->Location = System::Drawing::Point(0, 0);
this->menuStripMain->Name = L"menuStripMain";
this->menuStripMain->Size = System::Drawing::Size(670, 24);
this->menuStripMain->TabIndex = 0;
this->menuStripMain->Text = L"menuStrip1";
//
// openFileDlg
//
this->openFileDlg->FileOk += gcnew System::ComponentModel::CancelEventHandler(this, &FormMain::openFileDlg_FileOk);
//
// saveFileDlg
//
this->saveFileDlg->FileOk += gcnew System::ComponentModel::CancelEventHandler(this, &FormMain::saveFileDlg_FileOk);
//
// tableLayoutPanel1
//
this->tableLayoutPanel1->ColumnCount = 1;
this->tableLayoutPanel1->ColumnStyles->Add((gcnew System::Windows::Forms::ColumnStyle(System::Windows::Forms::SizeType::Percent,
100)));
this->tableLayoutPanel1->Controls->Add(this->splitContainerH, 0, 1);
this->tableLayoutPanel1->Controls->Add(this->statusStrip1, 0, 2);
this->tableLayoutPanel1->Controls->Add(this->toolStripMain, 0, 0);
this->tableLayoutPanel1->Dock = System::Windows::Forms::DockStyle::Fill;
this->tableLayoutPanel1->Location = System::Drawing::Point(0, 24);
this->tableLayoutPanel1->Name = L"tableLayoutPanel1";
this->tableLayoutPanel1->RowCount = 3;
this->tableLayoutPanel1->RowStyles->Add((gcnew System::Windows::Forms::RowStyle()));
this->tableLayoutPanel1->RowStyles->Add((gcnew System::Windows::Forms::RowStyle(System::Windows::Forms::SizeType::Percent, 100)));
this->tableLayoutPanel1->RowStyles->Add((gcnew System::Windows::Forms::RowStyle()));
this->tableLayoutPanel1->Size = System::Drawing::Size(670, 425);
this->tableLayoutPanel1->TabIndex = 6;
//
// splitContainerH
//
this->splitContainerH->Dock = System::Windows::Forms::DockStyle::Fill;
this->splitContainerH->Location = System::Drawing::Point(3, 34);
this->splitContainerH->Name = L"splitContainerH";
this->splitContainerH->Orientation = System::Windows::Forms::Orientation::Horizontal;
//
// splitContainerH.Panel1
//
this->splitContainerH->Panel1->Controls->Add(this->splitContainerV);
//
// splitContainerH.Panel2
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -