C++ Builder XE4 > TMonthCalendar > 1일에서 4일을 Bold 표시 > Bold인지 알기 어렵다
6159 단어 TMonthCalendardatetimecppBuilder
C++ Builder XE4
Windows 7 Pro (32bit)
처리 개요
RadStudio의 도움을 보았지만 의미를 알지 못했습니다.
참고
구현
Unit1.h
//---------------------------------------------------------------------------
#ifndef Unit1H
#define Unit1H
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include <Vcl.ComCtrls.hpp>
#include <Vcl.Grids.hpp>
#include <Vcl.Samples.Calendar.hpp>
//---------------------------------------------------------------------------
class TForm1 : public TForm
{
__published: // IDE で管理されるコンポーネント
TMonthCalendar *MonthCalendar1;
void __fastcall MonthCalendar1GetMonthBoldInfo(TObject *Sender, DWORD Month, DWORD Year,
DWORD &MonthBoldInfo);
private: // ユーザー宣言
public: // ユーザー宣言
__fastcall TForm1(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TForm1 *Form1;
//---------------------------------------------------------------------------
#endif
Unit1.cpp
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "Unit1.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TForm1::MonthCalendar1GetMonthBoldInfo(TObject *Sender, DWORD Month,
DWORD Year, DWORD &MonthBoldInfo)
{
unsigned int bolddays[] = {1, 2, 3, 4};
unsigned int days;
MonthCalendar1->BoldDays(bolddays, 4, days);
MonthBoldInfo = days;
}
//---------------------------------------------------------------------------
실행 예
11월
12월
Reference
이 문제에 관하여(C++ Builder XE4 > TMonthCalendar > 1일에서 4일을 Bold 표시 > Bold인지 알기 어렵다), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/7of9/items/73e1debf8e8f91f409b8텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)