AcManager.Pages.Dialogs.UpgradeIconEditor_Editor.Command_ToggleBold_Executed C# (CSharp) 메소드

Command_ToggleBold_Executed() 개인적인 메소드

private Command_ToggleBold_Executed ( object sender, System.Windows.Input.ExecutedRoutedEventArgs e ) : void
sender object
e System.Windows.Input.ExecutedRoutedEventArgs
리턴 void
        private void Command_ToggleBold_Executed(object sender, ExecutedRoutedEventArgs e) {
            NewIconLabel.FontWeight = NewIconLabel.FontWeight == FontWeights.Bold ? FontWeights.Normal : FontWeights.Bold;
        }