gpt4 book ai didi

delphi - 如何在 TMonthCalendar 中将月份日期加粗时获取年份?

转载 作者:行者123 更新时间:2023-12-03 15:28:14 24 4
gpt4 key购买 nike

我有一个使用日历的日志,我想将记录信息的日期加粗。我将它们放在 3D 数组 TDiaryLog = array[1900..2399] of array[1..12] of array[1..31] of POneDay; 中。但在 OnGetMonthInfo 中,当我必须构建包含粗体日期的列表时,它只提供了月份,而不是年份。如果我没有年份,我怎么知道我必须在哪一个月度过这一天?当日历中显示 12 月为当前月份时,会显示距离明年 1 月还有几天!

procedure TMainForm.CalendarGetMonthInfo(Sender: TObject; Month: Cardinal;
var MonthBoldInfo: Cardinal);
begin
end;

最佳答案

我制作了一个新组件,在其中拦截了 MCN_GETDAYSTATE 消息,并从消息信息中提取了年份...它一直都在那里,但 Delphi 认为该年份没有用。

  TOnGetMonthInfoExEvent = procedure(Sender: TObject; Year, Month: Word;
var MonthBoldInfo: LongWord) of object;

TNewMonthCalendar = class(TMonthCalendar)
private
FOnGetMonthInfoEx: TOnGetMonthInfoExEvent;
procedure CNNotify(var Msg: TWMNotifyMC); message CN_NOTIFY;
published
property OnGetMonthInfoEx: TOnGetMonthInfoExEvent read FOnGetMonthInfoEx write FOnGetMonthInfoEx;
end;

procedure TNewMonthCalendar.CNNotify(var Msg: TWMNotifyMC);
var
I: Integer;
Month, Year: Word;
DS: PNMDayState;
CurState: PMonthDayState;
begin
if (Msg.NMHdr.code = MCN_GETDAYSTATE) and Assigned(FOnGetMonthInfoEx) then begin
DS:= Msg.NMDayState;
FillChar(DS.prgDayState^, DS.cDayState * SizeOf(TMonthDayState), 0);
CurState:= DS.prgDayState;
for I:= 0 to DS.cDayState - 1 do begin
Year:= DS.stStart.wYear;
Month:= DS.stStart.wMonth + I;
if Month > 12 then begin Inc(Year); Dec(Month, 12); end;
FOnGetMonthInfoEx(Self, Year, Month, CurState^);
Inc(CurState);
end;
end
else inherited;
end;

奖金

而且,作为奖励,您需要它来更新对当前月份 View 的粗体信息所做的更改...因为它不适用于 Invalidate

procedure TNewMonthCalendar.RefreshDayState;
var N: Cardinal;
Range: array[0..1] of TSystemTime;
Year, Month: Word;
States: array of TMonthDayState;
I: Integer;
begin
if not Assigned(FOnGetMonthInfoEx) then Exit;
N:= SendMessage(Handle, MCM_GETMONTHRANGE, GMR_DAYSTATE, LPARAM(@Range));
Year:= Range[0].wYear;
Month:= Range[0].wMonth;
SetLength(States, N);
FillChar(States[0], N * SizeOf(TMonthDayState), 0);
for I:= 0 to N-1 do begin
FOnGetMonthInfoEx(Self, Year, Month, States[I]);
Inc(Month);
if Month > 12 then
begin Dec(Month, 12); Inc(Year); end;
end;
SendMessage(Handle, MCM_SETDAYSTATE, N, LPARAM(@States[0]));
end;

关于delphi - 如何在 TMonthCalendar 中将月份日期加粗时获取年份?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58884170/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com