TCalendar
Android と iOS で動作するアプリのコンポーネントで、一部のセルの色を変更する必要があります。Delphi Seattle 10 を使用しています。何か方法はありますか?
2040 次
1 に答える
2
これは Delphi XE5 で動作します。残念ながら、コードをチェックするための Delphi 10 がありません。
type
TMyCalendar = class(TCalendar)
private
FSelectedDays: set of byte;
procedure ApplyStyle; override;
end;
...
{ TMyCalendar }
procedure TMyCalendar.ApplyStyle;
var
i: word;
LB: TListBox;
begin
inherited;
if FSelectedDays <> [] then
begin
LB := TListBox(TStyleObject(Children.Items[0]).Children.Items
[TStyleObject(Children.Items[0]).Children.Count - 1]);
for i := 0 to LB.Count - 1 do
if (Assigned(LB.ItemByIndex(i))) and
(StrToInt(LB.ItemByIndex(i).Text) in FSelectedDays) then
begin
LB.ItemByIndex(i).StyledSettings := LB.ItemByIndex(i).StyledSettings -
[TStyledSetting.ssStyle];
LB.ItemByIndex(i).Font.Style := LB.ItemByIndex(i).Font.Style +
[TFontStyle.fsBold];
With TRectangle.Create(LB.ItemByIndex(i)) do
begin
Parent := LB.ItemByIndex(i);
Align := TAlignLayout.alClient;
Fill.Color := TAlphaColorRec.Red;
Opacity := 0.5;
end;
end;
end;
end;
次に、TMyCalendar クラスのインスタンスを作成します。
TForm1 = class(TForm)
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
MyCalendar: TMyCalendar;
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
MyCalendar := TMyCalendar.Create(Self);
MyCalendar.Parent := Self;
MyCalendar.Position.X := 1;
MyCalendar.Position.Y := 1;
MyCalendar.FSelectedDays := [9, 11]; // <-set other days here and check the month
end;
添付
月の日のリストを表すプライベート変数 FDays にアクセスする別の方法があります。class helper
プロパティで公開を宣言しますDays
。
TMyCalendarHelper = class helper for TCalendar
function GetDays: TListBox;
procedure SetDays(const Value: TListBox);
property Days: TListBox read GetDays write SetDays;
end;
...
{ TMyCalendarHelper }
function TMyCalendarHelper.GetDays: TListBox;
begin
result := Self.FDays;
end;
procedure TMyCalendarHelper.SetDays(const Value: TListBox);
begin
Self.FDays := Value;
end;
次に、calss の子孫で、この ListBox とその項目をDays
プロパティを使用して制御します。
procedure TMyCalendar.ApplyStyle;
var
i: word;
// LB: TListBox;//<-you do not need it any more
begin
inherited;
if FSelectedDays <> [] then
begin
// LB := TListBox(TStyleObject(Children.Items[0]).Children.Items//<-you do not need it
// [TStyleObject(Children.Items[0]).Children.Count - 1]);//<-you do not need it
for i := 0 to Days.Count - 1 do
if (Assigned(Days.ItemByIndex(i))) and
(StrToInt(Days.ItemByIndex(i).Text) in FSelectedDays) then
begin
Days.ItemByIndex(i).StyledSettings := Days.ItemByIndex(i).StyledSettings -
[TStyledSetting.ssStyle];
Days.ItemByIndex(i).Font.Style := Days.ItemByIndex(i).Font.Style +
[TFontStyle.fsBold];
//Do other things you want with Days.ItemByIndex(i)
APPENDED 2 日付 の描き方を修正する可能性があります。
TMyCalendar = class(TCalendar)
private
FSelectedDays: set of byte;
procedure PaintChildren; override;
end;
procedure TMyCalendar.PaintChildren;
var
i: word;
TMPC: TAlphaColor;
R: TRectF;
begin
inherited;
if FSelectedDays <> [] then
begin
for i := 0 to Days.Count - 1 do
if (Assigned(Days.ItemByIndex(i))) and
(StrToInt(Days.ItemByIndex(i).Text) in FSelectedDays) then
begin
TMPC := Days.ItemByIndex(i).Canvas.Fill.Color;
R := Days.ItemByIndex(i).AbsoluteRect;
R.Inflate(Position.X, Position.Y, -Position.X, -Position.Y);
Days.ItemByIndex(i).Canvas.BeginScene;
Days.ItemByIndex(i).Canvas.Fill.Color := TAlphaColorRec.Red;
Days.ItemByIndex(i).Canvas.FillRect(R, 0, 0, [], 0.5);
Days.ItemByIndex(i).Canvas.EndScene;
Days.ItemByIndex(i).Canvas.Fill.Color := TMPC;
end;
end;
end;
于 2015-11-10T18:58:47.893 に答える