Binding Created Objects

From RAD Studio
Jump to: navigation, search

Go Up to Tutorial: Using LiveBinding in VCL Applications


Once you have completed the previous step, you can move on to the next section, which describes how to bind various properties of the edit controls to the properties of the image control. For this purpose you will be using the LiveBindings Designer.

If the LiveBindings Designer is not already shown, then go to the View menu and choose the LiveBindings Designer command.

LBVCL3.png

Enabling the Bindable Members

First you have to enable the Top, Left, Width, and Height bindable members in the designer for the image control. To do this:

  1. Click the three-dots logo in the lower-right corner of the block that represents the image control, in the designer.
  2. From the Bindable Members dialog box, check the Top, Left, Width, and Height members, and click OK.

    LBVCL4.png

Creating LiveBindings

Now you can just create bindings between the edits and the dimension-related properties of the image.

  1. Draw a line between the Text property of the edtHeight block to the Height property of the Image1 control

    LBVCL5.png

  2. Draw lines between the Text property of the other edit boxes to their corresponding properties of the Image1 control.

    LBVCL6.png

After completing the creation of the binding expressions, you can see that a new component has been added to the form: BindingsList1. Double-click this component to bring up the following dialog box.

LBVCL7.png

The binding expression editor allows for visual editing of all expressions available in your Application. Double-click any binding expression listed in the binding list component to bring up another dialog box that is used to edit the parameters of the selected binding expression. In this way, you can easily edit and modify your binding expressions, the same as you would do in the Object Inspector.

Now you are ready to run your Application.

Next

Previous