I have 3 custom tRectangle
on a form. When creating the custom tRectangle
, I set CanFocus = True;
, so the tRectangle
can be focused. On FormCreate
event, I set the TabOrder
to 0 to the first tRectangle
, to 1 to the second tRectangle
and to 2 to the third tRectangle
.
When running the application, the first tRectangle
, since it's TabOrder
is 0, should get the focus, but it does not.
Also, when tabbing, the second control gets focus, then the third control and at this point the focus gets stuck. Now, if tabbing with the Shift
key pressed, the second control gets focus, until it reaches the first control, and again the focus gets stuck.
I appreciate if anyone can tell me why the control with TabOrder
0 is not focused at runtime and why tabbing is not acting in a circular way.
Follows code:
unit frmMyRect;
interface
uses FMX.Controls, FMX.Controls.Presentation, FMX.Forms, FMX.Layouts,
FMX.Objects, FMXFMX.StdCtrls, FMX.Types,System.Classes, System.UITypes;
type
tfrmMyRect = class (tForm)
procedure FormCreate (Sender: tObject);
end;
tMyRect = class (tRectangle)
fMyRectLabel : tLabel;
constructor Create (aOwner : tComponent);
procedure MyRectClick (Sender: tObject);
procedure MyRectEnter (Sender: tObject);
procedure MyRectExit (Sender: tObject);
function GetText : string;
procedure SetText (const aText: string);
published
property Text : string read GetText write SetText;
end;
var formMyRect: tfrmMyRect;
implementation
{$R *.fmx}
var MyRect1 : tMyRect;
MyRect2 : tMyRect;
MyRect3 : tMyRect;
procedure tformMyRect.FormCreate (Sender: tObject);
begin
MyRect1 := tMyRect.Create (Self);
MyRect1.Parent := frmMyRect;
MyRect1.TabOrder := 0;
MyRect1.Text := 'MyRect&1';
MyRect2 := tMyRect.Create (Self);
MyRect2.Parent := frmMyRect;
MyRect2.TabOrder := 1;
MyRect2.Text := 'MyRect&2';
MyRect3 := tMyRect.Create (Self);
MyRect3.Parent := frmMyRect;
MyRect3.TabOrder := 2;
MyRect3.Text := 'MyRect&3';
end; { FormCreate }
constructor tMyRect.Create (aOwner: tComponent);
begin
inherited;
CanFocus := True;
Height := 23;
OnClick := MyRectClick;
OnEnter := MyRectEnter;
OnExit := MyRectExit;
TabStop := True;
Width := 80;
fMyRectLabel := tLabel.Create (Self);
with fMyRectLabel do begin
Align := tAlignLayout.Center;
FocusControl := Self;
HitTest := False;
Parent := Self;
StyledSettings := [];
TabStop := False;
with TextSettings do begin
FontColor := TAlphaColorRec.Blue;
WordWrap := False;
Font.Style := [TFontStyle.fsBold];
end;
end;
end; { Create }
procedure ctMyRect.MyRectClick (Sender: tObject);
begin
Fill.Color := TAlphaColorRec.Aqua;
end;
procedure ctMyRect.MyRectEnter (Sender: TObject);
begin
Fill.Color := TAlphaColorRec.Aqua;
end;
procedure ctMyRect.MyRectExit (Sender: TObject);
begin
Fill.Color := TAlphaColorRec.Beige;
end;
end.