コード例 #1
0
        protected virtual void OnApplyingThemes(ApplyThemesEventArgs args)
        {
            EventHandler <ApplyThemesEventArgs> eventHandler = this.applyingThemes;

            if (eventHandler == null)
            {
                return;
            }
            eventHandler((object)this, args);
        }
コード例 #2
0
ファイル: ThemeManager.cs プロジェクト: kingpin2k/MCS
 protected virtual void OnApplyingThemes(ApplyThemesEventArgs args)
 {
     EventHandler<ApplyThemesEventArgs> eventHandler = this.applyingThemes;
     if (eventHandler == null)
         return;
     eventHandler((object)this, args);
 }