Example #1
0
 public BitmapClipboardDataFactory(
     IImagePersistenceService imagePersistenceService,
     IImageNativeApi imageNativeApi)
 {
     this.imagePersistenceService = imagePersistenceService;
     this.imageNativeApi          = imageNativeApi;
 }
 public BitmapUnwrapper(
     IClipboardNativeApi clipboardNativeApi,
     IImageNativeApi imageNativeApi,
     IGeneralNativeApi generalNativeApi)
 {
     this.clipboardNativeApi = clipboardNativeApi;
     this.imageNativeApi     = imageNativeApi;
     this.generalNativeApi   = generalNativeApi;
 }
 public FileIconService(
     IImagePersistenceService imagePersistenceService,
     IIconNativeApi iconNativeApi,
     IImageNativeApi imageNativeApi)
 {
     this.imagePersistenceService = imagePersistenceService;
     this.iconNativeApi           = iconNativeApi;
     this.imageNativeApi          = imageNativeApi;
 }
 public BitmapUnwrapper(
     IImagePersistenceService imagePersistenceService,
     IClipboardNativeApi clipboardNativeApi,
     IImageNativeApi imageNativeApi,
     IGeneralNativeApi generalNativeApi,
     IMainWindowHandleContainer mainWindowHandleContainer,
     IMemoryUnwrapper memoryUnwrapper)
 {
     this.imagePersistenceService   = imagePersistenceService;
     this.clipboardNativeApi        = clipboardNativeApi;
     this.imageNativeApi            = imageNativeApi;
     this.generalNativeApi          = generalNativeApi;
     this.mainWindowHandleContainer = mainWindowHandleContainer;
     this.memoryUnwrapper           = memoryUnwrapper;
 }