public BackgroundAwareIconSet(
     ISimpleDeviceIconSet forLightBackground,
     ISimpleDeviceIconSet forDarkBackground)
 {
     this._forLightBackground = forLightBackground;
     this._forDarkBackground  = forDarkBackground;
 }
 public DeviceIconSet(
     ISimpleDeviceIconSet large,
     ISimpleDeviceIconSet medium,
     IInteractiveDeviceIconSet small,
     Image background,
     IColorSet colors)
 {
     this._large      = large;
     this._medium     = medium;
     this._small      = small;
     this._background = background;
     this._colors     = colors;
 }
 public DetailedImages(ISimpleDeviceIconSet mediumImages, ISimpleDeviceIconSet largeImages)
 {
     this._mediumImages = mediumImages;
     this._largeImages  = largeImages;
 }