Delphi XE2의FireMonkey 입문(25) - 데이터 귀속:TBindingsList: 표현식의 유연성 및 표현식 함수

2726 단어 Delphi
귀속 표현식에는 간단한 연산과 문자열이 연결될 수 있지만, 문자열은 더블 인덱스에 넣어야 합니다.
TBindingsList도 사용할 수 있습니다.Methods에서 제공하는 표현식 함수 세트(System.Bindings.Methods 및 Data.Bind.engExt 유닛):

ToStr()
ToVariant()
Round()
Format()
UpperCase()
LowerCase()
FormatDateTime()
StrToDateTime()
Max()
Min()
CheckedState()
SelectedItem()
SelectedText()
예: 세 개의 Tlabel로 창의 너비, 높이, 면적을 각각 나타낸다.
현재 창에 Label1, Label2, Label3, BindingsList1을 추가하고 창의 Oncreate와 OnResize 이벤트를 활성화합니다.

unit Unit1;

interface

uses
  System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
  FMX.Types, FMX.Controls, FMX.Forms, FMX.Dialogs, Data.Bind.EngExt,
  Fmx.Bind.DBEngExt, Data.Bind.Components;

type
  TForm1 = class(TForm)
    Label1: TLabel;
    Label2: TLabel;
    Label3: TLabel;
    BindingsList1: TBindingsList;
    procedure FormCreate(Sender: TObject);
    procedure FormResize(Sender: TObject);
  end;

var
  Form1: TForm1;

implementation

{$R *.fmx}

procedure TForm1.FormCreate(Sender: TObject);
begin
  with TBindExpression.Create(BindingsList1) do
  begin
    ControlComponent := Label1;
    ControlExpression := 'Text';
    SourceComponent := Form1;
    SourceExpression := '"  : " + ToStr(Width)';
    Active := True;
  end;

  with TBindExpression.Create(BindingsList1) do
  begin
    ControlComponent := Label2;
    ControlExpression := 'Text';
    SourceComponent := Form1;
//    SourceExpression := '"  : " + ToStr(Height)';
    SourceExpression := 'Format("  : %s", ToStr(Height))'; //    ;         Format    ,           []  
    Active := True;
  end;

  with TBindExpression.Create(BindingsList1) do
  begin
    ControlComponent := Label3;
    ControlExpression := 'Text';
    SourceComponent := Form1;
    SourceExpression := '"  : " + ToStr(Width * Height)';
    Active := True;
  end;
end;

procedure TForm1.FormResize(Sender: TObject);
begin
  BindingsList1.Notify(Sender, 'Width');
  BindingsList1.Notify(Sender, 'Height');
end;

end.
키워드 Self, Owner를 표현식에 사용할 수도 있습니다.
참조:
Delphi XE2의FireMonkey 입문(28) - 데이터 귀속:TBindingsList: 표현식 함수 테스트:SelectedText(), CheckedState()

좋은 웹페이지 즐겨찾기