internal IconHandleInfo(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);
 }
 internal IconHandleInfo(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);
 }
Example #3
0
 public static extern bool GetIconInfo(IntPtr hIcon, out ICONINFO piconinfo);
Example #4
0
 public static extern bool GetIconInfo(IntPtr hIcon, out ICONINFO piconinfo);