/// <summary>Initializes a new instance of the <see cref="DrawingCollection"/> class.
 /// Initializes a new instance of the class.</summary>
 /// <param name="parent">The parent.</param>
 public DrawingCollection(DrawingConnection parent)
 {
     this.parent = parent;
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Connection"/> class.
 /// Initializes a new instance of the class.
 /// </summary>
 public Connection()
 {
     this.model   = new ModelConnection();
     this.drawing = new DrawingConnection(this.model);
 }