Yuhan.WPF.CustomWindow.WindowButton.RefreshContent C# (CSharp) Метод

RefreshContent() защищенный Метод

Set's the content of the button according to the current 'IsEnabled' state of the button
protected RefreshContent ( ) : void
Результат void
        protected void RefreshContent()
        {
            // Button is enabled
            if (this.IsEnabled)
                this.ActiveContent = this.Content;
            else
                this.ActiveContent = this.ContentDisabled;
        }