LayoutFarm.CustomWidgets.ImageBox.PerformContentLayout C# (CSharp) Method

PerformContentLayout() public method

public PerformContentLayout ( ) : void
return void
        public override void PerformContentLayout()
        {
            if (imageBinder.State == ImageBinderState.Loaded)
            {
                this.SetSize(this.imageBinder.ImageWidth, this.imageBinder.ImageHeight);
            }
        }
    }