Example #1
0
 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);
 }
Example #2
0
 public LargeIcon(BinaryReader br)
 {
     Bytes = br.ReadBytes(0x1200);
     Icon  = BCLIM.getIMG(48, 48, Bytes, 0x5);
 }
Example #3
0
 public SmallIcon(BinaryReader br)
 {
     Bytes = br.ReadBytes(0x480);
     Icon  = BCLIM.getIMG(24, 24, Bytes, 0x5);
 }