WeifenLuo.WinFormsUI.Docking.DockContent.ApplyTheme C# (CSharp) 메소드

ApplyTheme() 공개 메소드

public ApplyTheme ( ) : void
리턴 void
        public void ApplyTheme()
        {
            DockHandler.ApplyTheme();

            if (DockPanel != null)
            {
                if (MainMenuStrip != null)
                    DockPanel.Theme.ApplyTo(MainMenuStrip);
                if (ContextMenuStrip != null)
                    DockPanel.Theme.ApplyTo(ContextMenuStrip);
            }
        }