示例#1
0
        internal void RaiseAfterConfigurationObjectLoaded()
        {
            OnAfterConfigurationObjectLoaded();

            EventHandler <ChoConfigurationObjectEventArgs> afterConfigurationObjectLoadedInternal = AfterConfigurationObjectLoadedInternal;

            if (afterConfigurationObjectLoadedInternal != null)
            {
                ChoConfigurationObjectEventArgs configurationObjectEventArgs = new ChoConfigurationObjectEventArgs();
                afterConfigurationObjectLoadedInternal(this, configurationObjectEventArgs);
            }
        }
示例#2
0
        internal void RaiseAfterConfigurationObjectPersisted()
        {
            OnAfterConfigurationObjectPersisted();

            EventHandler <ChoConfigurationObjectEventArgs> afterConfigurationObjectPersisted = AfterConfigurationObjectPersisted;

            if (afterConfigurationObjectPersisted != null)
            {
                ChoConfigurationObjectEventArgs configurationObjectEventArgs = new ChoConfigurationObjectEventArgs();
                afterConfigurationObjectPersisted(this, configurationObjectEventArgs);
            }
        }
示例#3
0
        internal void RaiseAfterConfigurationObjectLoaded()
        {
            Initialized = true;

            //Wire INotifyPropertyChanged members for any changes
            WireNotifyPropertyChangedMembersForChanges(GetType());

            OnAfterConfigurationObjectLoaded();

            EventHandler <ChoConfigurationObjectEventArgs> afterConfigurationObjectLoadedInternal = AfterConfigurationObjectLoadedInternal;

            if (afterConfigurationObjectLoadedInternal != null)
            {
                ChoConfigurationObjectEventArgs configurationObjectEventArgs = new ChoConfigurationObjectEventArgs();
                afterConfigurationObjectLoadedInternal(this, configurationObjectEventArgs);
            }
        }