public bool ChangeIcon(Bitmap img) { if (img.Width != Icon.Width || img.Height != Icon.Height) { return(false); } Icon = img; Bytes = BCLIM.getPixelData(Icon, 0x5); return(true); }
public LargeIcon(BinaryReader br) { Bytes = br.ReadBytes(0x1200); Icon = BCLIM.getIMG(48, 48, Bytes, 0x5); }
public SmallIcon(BinaryReader br) { Bytes = br.ReadBytes(0x480); Icon = BCLIM.getIMG(24, 24, Bytes, 0x5); }