DateTimePicker如何與Delphi自帶Style同步

Delphi 的 DateTimePicker 組件有一個CalColors屬性,能夠設置 DropDown 打開的日曆節目的風格。但若是不使用 Delphi 自帶的 Style,在這裏設置屬性看不到指望的效果。api

而使用了 delphi 自帶的style,效果又存在瑕疵——日曆面板大小有問題。
若是把自帶 style 的 client 項關閉,大小卻是對了,以前設置的MonthBackColor屬性在邊框上也體現出來了,可是和窗體的風格又不統一了。
網上一搜,Stack Overflow 給出了方案——去掉自動繪製 style,去提取 style 的相關元素來設置 CalColors 屬性。
嘗試一下,效果基本能接受了。記在這裏備查。
http://stackoverflow.com/questions/10335310/style-properties-for-tdatetimepicker
 1 uses
 2   Winapi.CommCtrl,
 3   Vcl.Styles,
 4   Vcl.Themes,
 5   uxTheme;
 6 
 7 Procedure SetVclStylesColorsCalendar( DateTimePicker: TDateTimePicker);
 8 Var
 9   LTextColor, LBackColor : TColor;
10 begin
11    uxTheme.SetWindowTheme(DateTimePicker.Handle, '', '');//disable themes in the calendar
12    //get the vcl styles colors
13    LTextColor:=StyleServices.GetSystemColor(clWindowText);
14    LBackColor:=StyleServices.GetSystemColor(clWindow);
15 
16    DateTimePicker.Color:=LBackColor;
17    //set the colors of the calendar
18    DateTimePicker.CalColors.BackColor:=LBackColor;
19    DateTimePicker.CalColors.MonthBackColor:=LBackColor;
20    DateTimePicker.CalColors.TextColor:=LTextColor;
21    DateTimePicker.CalColors.TitleBackColor:=LBackColor;
22    DateTimePicker.CalColors.TitleTextColor:=LTextColor;
23    DateTimePicker.CalColors.TrailingTextColor:=LTextColor;
24 end;
25 
26 procedure TForm2.DateTimePicker1DropDown(Sender: TObject);
27 var
28   hwnd: WinAPi.Windows.HWND;
29 begin
30   hwnd := SendMessage(TDateTimePicker(Sender).Handle, DTM_GETMONTHCAL, 0,0);
31   uxTheme.SetWindowTheme(hwnd, '', '');//disable themes in the drop down window
32 end;
33 procedure TForm2.FormCreate(Sender: TObject);
34 begin
35   SetVclStylesColorsCalendar(DateTimePicker1);
36 end;

相關文章
相關標籤/搜索