Example #1
0
 public ImageTabVM(PictureBL pictureBL, PhotographerBL photographerBL)
 {
     _pictureBL                 = pictureBL;
     _photographerBL            = photographerBL;
     _pictureBL.ImageTabVM      = this;
     _photographerBL.ImageTabVM = this;
 }
Example #2
0
 public TaskbarVM(ListPhotographerVM listPhotographerVM, EditPhotographerVM addPhotographerVM, PictureBL pictureBL, PhotographerBL photographerBL, ExportVM exportVM)
 {
     _listPhotographerVM = listPhotographerVM;
     _editPhotographerVM = addPhotographerVM;
     _exportVM           = exportVM;
     _pictureBL          = pictureBL;
     _photographerBL     = photographerBL;
 }
Example #3
0
        public ExportVM(PictureBL pictureBL)
        {
            _pictureBL          = pictureBL;
            _pictureBL.ExportVM = this;


            /*foreach (var pic in _pictureBL)
             * {
             *  this.List.Add(new ImagePreviewVM())
             * }*/

            //foreach bitimage
            //_pictureBL.CurrentPicture.Bitmap;
        }
Example #4
0
 public ImageScrollerVM(PictureBL pictureBL)
 {
     _pictureBL = pictureBL;
     _pictureBL.ImageScrollerVM = this;
 }
Example #5
0
 public ImagePreviewVM(PictureBL pictureBL)
 {
     _pictureBL = pictureBL;
     _pictureBL.ImagePreviewVM = this;
 }