ComponentFactory.Krypton.Toolkit.KryptonTrackBarDesigner.Initialize C# (CSharp) Method

Initialize() public method

Initializes the designer with the specified component.
public Initialize ( IComponent component ) : void
component IComponent The IComponent to associate the designer with.
return void
        public override void Initialize(IComponent component)
        {
            // Let base class do standard stuff
            base.Initialize(component);
            base.AutoResizeHandles = true;

            // Cast to correct type
            _trackBar = component as KryptonTrackBar;
        }
KryptonTrackBarDesigner