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

📄 unboundmodedemofastestsweepers.cpp

📁 DevExpress ExpressQuantumGrid Suite v5.9 Full Source
💻 CPP
字号:
//---------------------------------------------------------------------------

#include <vcl.h>
#pragma hdrstop

#include "UnboundModeDemoFastestSweepers.h"
#include "UnboundModeDemoTypes.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma link "cxButtons"
#pragma link "cxLookAndFeelPainters"
#pragma resource "*.dfm"
TUnboundModeDemoFastestSweepersForm *UnboundModeDemoFastestSweepersForm;
//---------------------------------------------------------------------------
__fastcall TUnboundModeDemoFastestSweepersForm::TUnboundModeDemoFastestSweepersForm(TComponent* Owner)
  : TForm(Owner)
{
}
//---------------------------------------------------------------------------

int __fastcall TUnboundModeDemoFastestSweepersForm::ShowModal()
{
  SetFormPosition(this, 35, 45);
  return (TForm::ShowModal());
}
//---------------------------------------------------------------------------

void __fastcall TUnboundModeDemoFastestSweepersForm::FormCreate(
      TObject *Sender)
{
  FastestTimesResetted = false;
}
//---------------------------------------------------------------------------

void __fastcall TUnboundModeDemoFastestSweepersForm::btnResetScoresClick(
      TObject *Sender)
{
  if (FastestTimesResetted)
    return;
  FastestTimesResetted = true;
  lbBeginnerTime->Caption = IntToStr(999);
  lbIntermediateTime->Caption = IntToStr(999);
  lbExpertTime->Caption = IntToStr(999);
  lbBeginnerName->Caption = "Anonymous";
  lbIntermediateName->Caption = "Anonymous";
  ibExpertName->Caption = "Anonymous";
}
//---------------------------------------------------------------------------


⌨️ 快捷键说明

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