14 references to ContentWrapperAttribute
PresentationFramework (2)
System\Windows\Documents\InlineCollection.cs (2)
20[ContentWrapper(typeof(Run))] 21[ContentWrapper(typeof(InlineUIContainer))]
System.Xaml.Tests (12)
System\Windows\Markup\ContentWrapperAttributeTests.cs (12)
17var attribute = new ContentWrapperAttribute(contentWrapper!); 23var attribute = new ContentWrapperAttribute(typeof(int)); 25yield return new object?[] { attribute, new ContentWrapperAttribute(typeof(int)), true }; 26yield return new object?[] { attribute, new ContentWrapperAttribute(typeof(string)), false }; 27yield return new object?[] { attribute, new ContentWrapperAttribute(null!), false }; 28yield return new object?[] { new ContentWrapperAttribute(null!), new ContentWrapperAttribute(null!), true }; 29yield return new object?[] { new ContentWrapperAttribute(null!), new ContentWrapperAttribute(typeof(int)), false }; 45var attribute = new ContentWrapperAttribute(typeof(int)); 52var attribute = new ContentWrapperAttribute(null!); 59var attribute = new ContentWrapperAttribute(typeof(int));