예제 #1
0
 public XamlComponentService(XamlDesignContext context)
 {
     this._context = context;
 }
예제 #2
0
 public XamlDesignItem(XamlObject xamlObject, XamlDesignContext designContext)
 {
     this._xamlObject    = xamlObject;
     this._designContext = designContext;
     this._properties    = new XamlModelPropertyCollection(this);
 }
예제 #3
0
 public XamlEditOperations(XamlDesignContext context, XamlParserSettings settings)
 {
     this._context  = context;
     this._settings = settings;
 }
 public XamlModelCollectionElementsCollection(XamlModelProperty modelProperty, XamlProperty property)
 {
     this.modelProperty = modelProperty;
     this.property      = property;
     this.context       = (XamlDesignContext)modelProperty.DesignItem.Context;
 }