ComponentFactory.Krypton.Ribbon.ViewDrawRibbonRecentDocs.RenderBefore C# (CSharp) 메소드

RenderBefore() 공개 메소드

Perform rendering before child elements are rendered.
public RenderBefore ( RenderContext context ) : void
context ComponentFactory.Krypton.Toolkit.RenderContext Rendering context.
리턴 void
        public override void RenderBefore(RenderContext context)
        {
            // Use renderer to draw the text content
            if (_memento != null)
                context.Renderer.RenderStandardContent.DrawContent(context, ClientRectangle,
                                                                   _contentProvider, _memento,
                                                                   VisualOrientation.Top,
                                                                   PaletteState.Normal, false, true);
        }