Back to our example: the fader stand is very basic but will add a nice fade in/out transition when showing/hiding the FrameStand to the user.
It is implemented using a TLayout component whose Align property has been set to the Contents value, filling the Parent object it will be associated with. No children with a StyleName container have been added so, as we have seen, we can expect the frame to be parented to the stand itself, using the aligning strategy of the frame (considering its Align, Anchors, and Margins properties and the like).
Two animations (TFloatAnimation instances, precisely) have been added to the TLayout component:
- OnShow_FadeIn: This transitions the Opacity property of its parent (TLayout) from value 0 to value 1 with a duration of 400 milliseconds and a Quadratic interpolation. TLayout implementing the stand is basically the most outer element of the framestand composition and, due to the behavior of the...