1 write to _factory
PresentationFramework (1)
src\Framework\System\Windows\Markup\Primitives\FrameworkElementFactoryMarkupObject.cs (1)
36_factory = factory;
12 references to _factory
PresentationFramework (12)
src\Framework\System\Windows\Markup\Primitives\FrameworkElementFactoryMarkupObject.cs (12)
56if (_factory.Type != null) 57return _factory.Type; 65get { return _factory; } 73if (_factory.Type == null) 75if (_factory.Text != null) 77yield return new FrameworkElementFactoryStringContent(_factory, this); 82FrugalStructList<PropertyValue> propertyValues = _factory.PropertyValues; 90ElementMarkupObject item = new ElementMarkupObject(_factory, Manager); 99if (_factory.FirstChild != null) 101if (_factory.FirstChild.Type == null) 103yield return new FrameworkElementFactoryStringContent(_factory.FirstChild, this); 107yield return new FrameworkElementFactoryContent(_factory, this);