gpt4 book ai didi

Delphi XE LiveBindings - 位到字节

转载 作者:行者123 更新时间:2023-12-03 15:47:57 25 4
gpt4 key购买 nike

我刚刚发现了 Delphi 的实时绑定(bind)。并创建了我的第一个组件来处理变频器的控制字。该组件本身似乎在表单设计器中测试它效果很好。但是,编译和运行应用程序不起作用。来自 livbindings 的屏幕截图如下:

Livebindings screenshot

这是组件的代码

unit cBits2Byte;

interface

uses
System.SysUtils, System.Classes;

type
TBits2Byte = class(TComponent)
private
{ Private declarations }
fBit00, fBit01, fBit02, fBit03, fBit04, fBit05, fBit06, fBit07: Boolean;
function bitstate(sfr, bit: Byte): Boolean;
function ReadByte: Byte;
procedure WriteByte(aByte: Byte);
published
{ Published declarations }
property char: byte read ReadByte write WriteByte;

property Bit00: Boolean read fBit00 write fBit00;
property Bit01: Boolean read fBit01 write fBit01;
property Bit02: Boolean read fBit02 write fBit02;
property Bit03: Boolean read fBit03 write fBit03;
property Bit04: Boolean read fBit04 write fBit04;
property Bit05: boolean read fBit05 write fBit05;
property Bit06: boolean read fBit06 write fBit06;
property Bit07: boolean read fBit07 write fBit07;
end;

procedure Register;

implementation

procedure Register;
begin
RegisterComponents('Standard', [TBits2Byte]);
end;

function TBits2Byte.bitstate(sfr, bit: Byte): Boolean;
begin
Result := Boolean( (sfr shr bit) And $01);
end;

function TBits2Byte.ReadByte: Byte;
begin
Result := (Ord(Bit07) shl 7) Or
(Ord(Bit06) shl 6) Or
(Ord(Bit05) shl 5) Or
(Ord(Bit04) shl 4) Or
(Ord(Bit03) shl 3) Or
(Ord(Bit02) shl 2) Or
(Ord(Bit01) shl 1) Or
(Ord(Bit00));
end;

procedure TBits2Byte.WriteByte(aByte: Byte);
begin
Bit00 := bitstate(aByte, 0);
Bit01 := bitstate(aByte, 1);
Bit02 := bitstate(aByte, 2);
Bit03 := bitstate(aByte, 3);
Bit04 := bitstate(aByte, 4);
Bit05 := bitstate(aByte, 5);
Bit06 := bitstate(aByte, 6);
Bit07 := bitstate(aByte, 7);
end;

end.

那么,我还缺少什么才能将这项工作作为实时绑定(bind)呢?

最佳答案

您必须使用 BindSource 进行绑定(bind)。在此示例中,我仅使用 TPrototypeBindSource

数据对象不需要有组件,一个简单的对象就足够了。

unit DataObject;

interface

type
TBits2Byte = class
private
{ Private declarations }
fBit00, fBit01, fBit02, fBit03, fBit04, fBit05, fBit06, fBit07: Boolean;
function bitstate( sfr, bit: Byte ): Boolean;
function ReadByte: Byte;
procedure WriteByte( aByte: Byte );
published
{ Published declarations }
property char: Byte read ReadByte write WriteByte;

property Bit00: Boolean read fBit00 write fBit00;
property Bit01: Boolean read fBit01 write fBit01;
property Bit02: Boolean read fBit02 write fBit02;
property Bit03: Boolean read fBit03 write fBit03;
property Bit04: Boolean read fBit04 write fBit04;
property Bit05: Boolean read fBit05 write fBit05;
property Bit06: Boolean read fBit06 write fBit06;
property Bit07: Boolean read fBit07 write fBit07;
end;

implementation

function TBits2Byte.bitstate( sfr, bit: Byte ): Boolean;
begin
Result := Boolean( ( sfr shr bit ) And $01 );
end;

function TBits2Byte.ReadByte: Byte;
begin
Result :=
{} ( Ord( Bit07 ) shl 7 ) Or
{} ( Ord( Bit06 ) shl 6 ) Or
{} ( Ord( Bit05 ) shl 5 ) Or
{} ( Ord( Bit04 ) shl 4 ) Or
{} ( Ord( Bit03 ) shl 3 ) Or
{} ( Ord( Bit02 ) shl 2 ) Or
{} ( Ord( Bit01 ) shl 1 ) Or
{} ( Ord( Bit00 ) shl 0 );
end;

procedure TBits2Byte.WriteByte( aByte: Byte );
begin
Bit00 := bitstate( aByte, 0 );
Bit01 := bitstate( aByte, 1 );
Bit02 := bitstate( aByte, 2 );
Bit03 := bitstate( aByte, 3 );
Bit04 := bitstate( aByte, 4 );
Bit05 := bitstate( aByte, 5 );
Bit06 := bitstate( aByte, 6 );
Bit07 := bitstate( aByte, 7 );
end;

end.

现在是带有绑定(bind)的表单

unit Form.Main;

interface

uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Data.Bind.Components,
Data.Bind.ObjectScope, System.Rtti, System.Bindings.Outputs, Vcl.Bind.Editors,
Data.Bind.EngExt, Vcl.Bind.DBEngExt, Vcl.StdCtrls;

type
TForm1 = class( TForm )
Bits2ByteSource: TPrototypeBindSource;
{ OnCreateAdapter -> Bits2ByteSourceCreateAdapter }
CheckBox1: TCheckBox;
CheckBox2: TCheckBox;
CheckBox3: TCheckBox;
CheckBox4: TCheckBox;
CheckBox5: TCheckBox;
CheckBox6: TCheckBox;
CheckBox7: TCheckBox;
CheckBox8: TCheckBox;
Edit1: TEdit;
procedure Bits2ByteSourceCreateAdapter( Sender: TObject; var ABindSourceAdapter: TBindSourceAdapter );
private
{ Private-Deklarationen }
public
{ Public-Deklarationen }
end;

var
Form1: TForm1;

implementation

uses
DataObject;

{$R *.dfm}

procedure TForm1.Bits2ByteSourceCreateAdapter( Sender: TObject; var ABindSourceAdapter: TBindSourceAdapter );
begin

// create the adapter and an instance of the data object

ABindSourceAdapter := TObjectBindSourceAdapter<TBits2Byte>.Create(
{AOwner} Self,
{AObject} TBits2Byte.Create,
{AOwnsObject} True );

ABindSourceAdapter.AutoEdit := True;
ABindSourceAdapter.AutoPost := True;
end;

end.

剩下的事情是通过实时绑定(bind)完成的。

声明 TPrototypeBindSource 中的所有字段,我使用字段编辑器命名为 Bits2ByteSource:

Bit00 -> ftBooleanBit01 -> ftBooleanBit02 -> ftBooleanBit03 -> ftBooleanBit04 -> ftBooleanBit05 -> ftBooleanBit06 -> ftBooleanBit07 -> ftBooleanChar -> ftChar

Bits2Bytes Fields

and after that bind all the fields with the controlsLivebindings

Ready for take off.


Just to mention:

The TEdit.Text value is only updated after leaving the control. If you want to have that field changed immediately then you have to set the (VCL) TEdit.OnChange / (FMX) TEdit.OnChangeTracking event with

TLinkObservers.ControlChanged( Edit1 );

或者你会有一个通用的方法

procedure TForm1.ControlChanged( Sender : TObject );
begin
if Sender is TComponent then
TLinkObservers.ControlChanged( Sender as TComponent );
end;

关于Delphi XE LiveBindings - 位到字节,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28281721/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com