Exemple #1
0
 internal IconHandleInfo(NativeMethods.ICONINFO info)
 {
     this.IsIcon = info.fIcon;
     this.Hotspot = new Point(info.xHotspot, info.yHotspot);
     this.MaskBitmap = new BitmapHandle(info.hbmMask);
     this.ColorBitmap = new BitmapHandle(info.hbmColor);
 }