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()
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[Delphi] TStringBuilder그리고 꼭 사용해야만 할까? 그림처럼 Heap 영역에 "Hello" 공간을 생성하고 포인팅을 한다. "Hello World" 공간을 새로 생성한 후 포인팅을 하게 된다. 결국 "Hello" 라는 String 객체가 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.