Ejemplo n.º 1
0
        public void TestBoundCopyWithAdd()
        {
            var  boundCopy          = bindableStringList.GetBoundCopy();
            bool boundCopyItemAdded = false;

            boundCopy.ItemsAdded += item => boundCopyItemAdded = true;

            bindableStringList.Add("test");

            Assert.IsTrue(boundCopyItemAdded);
        }