ComponentFactory.Krypton.Toolkit.ViewDrawButton.Render C# (CSharp) Method

Render() public method

Perform a render of the elements.
public Render ( RenderContext context ) : void
context RenderContext Rendering context.
return void
        public override void Render(RenderContext context)
        {
            Debug.Assert(context != null);

            // Ensure that child elements have correct palette state
            CheckPaletteState(context);

            // Let base class perform standard rendering
            base.Render(context);
        }