Beispiel #1
0
 public Project()
 {
     LastAssignedUniqueID = 0;
     _lastPageNumber = 0;
     PageDictionary = new ObservableDictionary<long, ASGPage>();
     ProjectName = "Untitled Project";
     DefaultCanvasSettings = new CanvasSettings();
 }
Beispiel #2
0
 public ASGPage()
 {
     PrototypeElementDictionary = new ObservableDictionary<long,PrototypeElement>();
     Strokes = new SerializableStrokeCollection();
     PageCanvasSettings = new CanvasSettings();
 }