C++ Builder XE4 > TMonthCalendar > 1일에서 4일을 Bold 표시 > Bold인지 알기 어렵다

운영 환경
C++ Builder XE4
Windows 7 Pro (32bit)

처리 개요


  • TMonthCalendar와 관련하여 하루에서 4 일을 볼 수 있습니다.

    RadStudio의 도움을 보았지만 의미를 알지 못했습니다.

    참고


  • h tps : // s t c ゔ ぇ rf ぉ w. 코 m / 쿠에 s 치온 s / 12794009 / 흐릿한 ys ぃ th t th th

  • 구현



    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월

  • Bold인지 알기 어려운
  • 달을 바꾸었을 때, 그 달에 1일부터 4일이 Bold 표시
  • 설정하지 않은 날도 Bold로 되어 있는 것 같은
  • 좋은 웹페이지 즐겨찾기