b3_raeditortest.cpp

来自「Jedi Code Library JCL JVCL 组件包 JCL+JVCL超」· C++ 代码 · 共 22 行

CPP
22
字号
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
USERES("B3_RAEditorTest.res");
USEFORMNS("fRAEditorTest.pas", Fraeditortest, Editor);
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
    try
    {
        Application->Initialize();
        Application->CreateForm(__classid(TEditor), &Editor);
        Application->Run();
    }
    catch (Exception &exception)
    {
        Application->ShowException(&exception);
    }
    return 0;
}
//---------------------------------------------------------------------------

⌨️ 快捷键说明

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