Beispiel #1
0
        protected override bool ApplyChanges()
        {
            if (!_feature.ApplyChanges())
            {
                return(false);
            }

            this.ClearChanges();
            return(true);
        }
Beispiel #2
0
        protected override bool ApplyChanges()
        {
            try
            {
                if (!_feature.ApplyChanges())
                {
                    return(false);
                }
            }
            catch (COMException ex)
            {
                ShowError(ex, false);
                return(true);
            }

            ClearChanges();
            return(true);
        }