public ModelDocumentVM(ModelDocumentService modelDocumentService,
                        CommandBindingCollection commandBindings,
                        TankInstance tank,
                        string persistentInfo)
     : base(commandBindings, tank, persistentInfo)
 {
     this.ModelDocumentService = modelDocumentService;
     this.Capture = new CaptureVM(this);
 }
 public YawAnimationCapturer(CaptureVM owner)
     : base(owner)
 {
 }
 public VisualModelComparerCapturer(CaptureVM owner)
     : base(owner)
 {
 }
Example #4
0
 public StaticCapturer(CaptureVM owner)
     : base(owner)
 {
 }