谁知道C++builder中的Virtualclock 类?

来源:百度知道 编辑:UC知道 时间:2024/07/02 15:09:46
class PACKAGE TVirtualClock : public TGraphicControl
{
private:
TTimer * FTimer; //计时器
TFont * FFontDate; //日期字体
TFont * FFontHour; //小时数字字体
TColor FColorBackground; //背景颜色
TColor FColorTicks; //滴答颜色
TColor FColorHourHand; //时针颜色
TColor FColorMinuteHand; //分针颜色
TColor FColorSecondHand; //秒针颜色
int FWidthHourHand; //时针宽度
int FWidthMinuteHand; //分针宽度
int FWidthSecondHand; //秒针宽度
int FRadiusBigTick; //
int FRadiusTinyTick; //
TDateTime FStartDateTime; //起始时间
TDateTime FCurrentDateTime; //当前时间
int FRadius; //半径
int FDateTop;

你用的哪个版本的CB?这个控件不是自带的控件。有可能是某个第三方库中一个组件。。
用记事本打开你的工程文件中有所需lib的名字,你可以搜索一下。

我这有c++的文档你要不 ?