コード例 #1
0
 public PhotoCollection(Guid _id, string _data, string _comment, ImageSource _imgsrc, PhotoTypes types)
 {
     ID      = _id;
     Data    = _data;
     Comment = _comment;
     ImgSrc  = _imgsrc;
     _Types  = types;
 }
コード例 #2
0
 public PhotoCollection(Guid iD, string comment, string path, MediaFile file, ImageSource imgSrc, PhotoTypes types)
 {
     ID      = iD;
     Comment = comment;
     Path    = path;
     File    = file;
     ImgSrc  = imgSrc;
     _Types  = types;
 }