myeditcomponent.cpp
来自「《C Builder 5技术内幕》程序源代码」· C++ 代码 · 共 35 行
CPP
35 行
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "MyEditComponent.h"
//--------------------------------------------------------------------------
static inline TMyEdit *ValidCtrCheck()
{
return new TMyEdit( NULL );
}
//--------------------------------------------------------------------------
__fastcall TMyEdit::TMyEdit( TComponent* Owner ) : TEdit( Owner )
{
Color = clInfoBk;
Font->Color = clInfoText;
Font->Name = "Times New Roman";
Font->Size = 12;
Font->Style = TFontStyles() << fsBold << fsItalic;
}
//--------------------------------------------------------------------------
namespace MyComponents
{
void __fastcall Register()
{
TComponentClass classes[1] = {__classid( TMyEdit )};
RegisterComponents("MyComponents", classes, 0);
}
}
//---------------------------------------------------------------------------
#pragma package(smart_init)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?