Beispiel #1
0
        public void AfterSet_TheSameValueIsReturned()
        {
            var instance = new Grid();

            sut.SetValue(property, instance, SomeValue);
            var actual = sut.GetValue(property, instance);

            Assert.Equal(SomeValue, actual);
        }
Beispiel #2
0
 public object GetValue(AttachedProperty property, object instance)
 {
     return(attachedEngine.GetValue(property, instance));
 }