Exemple #1
0
        private PivotItem OnAddItem(PivotItem item)
        {
            try
            {
                item.ContainingCollection = this;
            }
            catch
            {
                item.ContainingCollection = null;
                throw;
            }

            return(item);
        }
Exemple #2
0
 private void OnRemoveItem(PivotItem item)
 {
     item.ContainingCollection = null;
 }