论坛


2011年10月2日 星期日

Delphi XE2 之 FireMonkey 入门(24) - 数据绑定: TBindingsList: TBindExpression.Direction

万一| 万一的 Delphi 博客 |14:12:00

在学习 BindingSource 属性时, 可以让两个控件互为绑定源; TBindExpression 对应的功能是 Direction 属性.先在窗体上添加 Edit1、Edit2、BindingsList1; 然后激活 Edit1、Edit2 和窗体的默认事件.procedure TForm1.FormCreate(Sender: TObject);begin with TBindExp...

Delphi XE2 之 FireMonkey 入门(23) - 数据绑定: TBindingsList: TBindExpression

万一| 万一的 Delphi 博客 |11:24:00

准备用 TBindingsList 重做上一个例子.可以先把 TBindingsList 理解为是一组绑定表达式(TBindExpression)的集合;官方应该是提倡在设计时完成 TBindExpression 的建立与参数设置, 但我觉得看运行时的代码会更容易理解.1、先在窗体上添加 添加 TrackBar1、Edit1、Label...

2011年10月1日 星期六

Delphi XE2 之 FireMonkey 入门(22) - 数据绑定 : BindingSource、BindingName、FindBinding()、Binding[]

万一| 万一的 Delphi 博客 |12:31:00

窗体上添加 TrackBar1、Edit1、Label1, 然后设置属性(可在设计时):procedure TForm1.FormCreate(Sender: TObject);begin Edit1.BindingSource := TrackBar1; //将 TrackBar1 的值绑定在 Edit1 Label1.BindingSource := TrackBar1; //将 TrackBar1 的值绑定在 Labe...

Delphi XE2 之 FireMonkey 入门(22) - 数据绑定: BindingSource、BindingName、FindBinding()、Binding[]

万一| 万一的 Delphi 博客 |12:31:00

在窗体上添加 TrackBar1、Edit1、Label1, 然后设置属性(可在设计时):procedure TForm1.FormCreate(Sender: TObject);begin Edit1.BindingSource := TrackBar1; //将 TrackBar1 的值绑定在 Edit1 Label1.BindingSource := TrackBar1; //将 TrackBar1 的值绑定在 La...

SkinAdapter v. 4.75

Embarcadero| CodeCentral Delphi Submissions |03:25:45

Overview:SkinAdapter is a component for DynamicSkinForm and BusinessSkinForm which allows to make third-party controls skinnable without modifing source code. The SkinAdapter can make any third-party controls skinnable. For example, SkinAdapter c...

2011年9月30日 星期五

More reasons to upgrade to RAD Studio XE2 - LiveBindings example projects

David I| Sip from the Firehose |20:41:46

Delphi and C++Builder have provided component based connections to databases ever since their first versions. ?Using the VCL we’ve provided data bound components for the common user interface elements you want for your desktop and client ser...

RAD Studio XE2 World Tour: Barcelona, Lisbon, Madrid

Pawel Glowacki| Pawel Glowacki |20:11:26

RAD Studio XE2 World Tour continues! It was so cool this week to visit Spain and Portgual and show off the biggest release of Delphi and C++Builder since Delphi 1! All events were fully booked, conference rooms fully packed and energy levels and e...

Delphi XE2 LiveBindings

Felix Colibri| Felix Colibri’s Delphi Blog |18:51:01

DelphiXE2 LiveBindingstutorial : how to setup the SourceComponentand the ControlComponent and expression, tBindingList, the bindingsEditor, using several sources with tBindingScope, building bindingsby code, LiveBindings and databases. Far more fl...

Delphi XE2 之 FireMonkey 入门(21) - 和 FMX 相关的类(表)

万一| 万一的 Delphi 博客 |15:13:00

td { border: 1px solid #808080; }TObjectTPersistentTComponentIInterface,IInterfaceComponentReferenceTBasicActionTControlActionLinkTApplicationTBindNavigatorControllerTPlatformTPlatformCocoaTScreenTFmxObject参见TFmxObject 的子类们(表)TBasicBindComp...

AlphaControls 2010 v7.51

Embarcadero| CodeCentral Delphi Submissions |13:22:10

A package of standard and unique skinned VCL for UI design development using "AlphaSkins". AlphaControls is an easy-to-use universal and powerful tool for developing original skinned and non-skinned business/media applications. W...

AlphaControls Lite Edition v7.51

Embarcadero| CodeCentral Delphi Submissions |13:21:10

AlphaControls Lite Edition is a part of the AlphaControls package which can work without any limitations in Delphi 5/6/7/2005-XE and C++ Builder 6/2006-XE under Windows XP and newer. By using these components you can see the basic ideas behind Alp...

Delphi XE2 之 FireMonkey 入门(20) - TStyleBook(皮肤、样式)

万一| 万一的 Delphi 博客 |10:43:00

我觉得叫"皮肤"不如叫"样式", 因为它可以包含和动作关联的动画.在 FMX 下, 控件可以任意绘制, 不同的风格就成了样式.XE2 在 "...\Program Files\Embarcadero\RAD Studio\9.0\Redist\styles\Fmx\" 下提供了如下样式文件:Air.StyleAmakrits.StyleAquaGraphite.styleBle...

Delphi XE2 之 FireMonkey 入门(20) - TStyleBook(皮肤、样式相关)

万一| 万一的 Delphi 博客 |10:43:00

我觉得叫"皮肤"不如叫"样式", 因为它可以包含和动作关联的动画.在 FMX 下, 控件可以任意绘制, 不同的风格就成了样式.XE2 在 "...\Program Files\Embarcadero\RAD Studio\9.0\Redist\styles\Fmx\" 下提供了如下样式文件:Air.StyleAmakrits.StyleAquaGraphite.styleBle...

2011年9月29日 星期四

9 "Mobile development with DataSnap XE2" reasons to upgrade before September ends

David I| Sip from the Firehose |23:59:18

Who does’t have a smartphone and a tablet? ?You must personally know at least a dozen developers who are building mobile apps. ? At every stop on the RAD Studio XE World Tour, we showcased mobile app development along with the hundreds of ne...

Delphi XE2 之 FireMonkey 入门(19) - TFmxObject 的子类们(表)

万一| 万一的 Delphi 博客 |11:43:00

td { border: 1px solid #a0a0a0; }TFmxObjectIFreeNotificationTAnimationTBitmapAnimationTBitmapListAnimationTColorAnimationTColorKeyAnimationTFloatAnimationTFloatKeyAnimationTGradientAnimationTPathAnimationTRectAnimationTBitmapObjectTBrushObjectTCom...

« 上一页

下一页 »