Exemplo n.º 1
0
        protected virtual void OnXDataRemoveAppRegEvent(ApplicationRegistry item)
        {
            XDataRemoveAppRegEventHandler ae = this.XDataRemoveAppReg;

            if (ae != null)
            {
                ae(this, new ObservableCollectionEventArgs <ApplicationRegistry>(item));
            }
        }
Exemplo n.º 2
0
        public override TableObject Clone(string newName)
        {
            ApplicationRegistry copy = new ApplicationRegistry(newName);

            foreach (XData data in this.XData.Values)
            {
                copy.XData.Add((XData)data.Clone());
            }

            return(copy);
        }