Ejemplo n.º 1
0
            public override void Apply(Drawable d)
            {
                base.Apply(d);
                FlowContainer flowContainer = (FlowContainer)d;

                flowContainer.Spacing = CurrentValue;
            }
Ejemplo n.º 2
0
            public override void Apply(Drawable d)
            {
                base.Apply(d);
                FlowContainer t = d as FlowContainer;

                t.Spacing = CurrentValue;
            }
Ejemplo n.º 3
0
            public override void Apply(ITransformable d)
            {
                base.Apply(d);
                FlowContainer t = d as FlowContainer;

                if (t != null)
                {
                    t.Spacing = CurrentValue;
                }
            }