public XmlBamlPropertyElement(XmlBamlElement parent, PropertyType propertyType, PropertyDeclaration propertyDeclaration)
     : base(parent)
 {
     _propertyType            = propertyType;
     this.propertyDeclaration = propertyDeclaration;
     this.TypeDeclaration     = propertyDeclaration.DeclaringType;
 }
Example #2
0
 public XmlBamlProperty(PropertyType propertyType, PropertyDeclaration propertyDeclaration)
 {
     this.propertyDeclaration = propertyDeclaration;
     this.propertyType        = propertyType;
 }
 public XmlBamlPropertyElement(PropertyType propertyType, PropertyDeclaration propertyDeclaration)
 {
     _propertyType            = propertyType;
     this.propertyDeclaration = propertyDeclaration;
 }
Example #4
0
 public XmlBamlProperty(PropertyType propertyType, PropertyDeclaration propertyDeclaration)
 {
     PropertyDeclaration = propertyDeclaration;
     _propertyType       = propertyType;
 }