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

📄 rxgifanm.cpp

📁 RxRich很有用的文字图像显示控件,这是它的Demo
💻 CPP
字号:
//---------------------------------------------------------------------------
// Delphi VCL Extensions (RX) demo program
// Copyright (c) 1997, 1998 Master-Bank
//---------------------------------------------------------------------------
// RxGIFAnm.cpp
//
// RX GIF Animator
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
#include <vcl\vcl.h>
#pragma hdrstop
//---------------------------------------------------------------------------
USEFORMNS("Gifmain.pas", Gifmain, AnimatorForm);
USEFORMNS("Gifpal.pas", Gifpal, PaletteForm);
USEFORMNS("Gifprvw.pas", Gifprvw, PreviewForm);
USEUNIT("About.pas");
USERES("Rxgifanm.res");
//---------------------------------------------------------------------------
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
        try
        {
                 Application->Initialize();
                 Application->Title = "RX GIF Animator";
                 Application->CreateForm(__classid(TAnimatorForm), &AnimatorForm);
                 Application->Run();
        }
        catch (Exception &exception)
        {
                 Application->ShowException(&exception);
        }
        return 0;
}
//---------------------------------------------------------------------------

⌨️ 快捷键说明

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