예제 #1
0
파일: Bitmap.cs 프로젝트: xenonenium/NETFx
 BitmapW(Bitmap a)
 {
     holder = new LockBitmap(a);
     if (!bitmaplock)
     {
         holder.LockBits(); bitmaplock = true;
     }
 }
예제 #2
0
파일: Bitmap.cs 프로젝트: xenonenium/NETFx
 public BitmapW(String filename)
 {
     holder = new LockBitmap(new Bitmap(filename));
     if (!bitmaplock)
     {
         holder.LockBits(); bitmaplock = true;
     }
 }
예제 #3
0
파일: Bitmap.cs 프로젝트: asadm/NETFx
 BitmapW(Bitmap a)
 {
     holder = new LockBitmap(a);
     if (!bitmaplock) { holder.LockBits(); bitmaplock = true; }
 }
예제 #4
0
파일: Bitmap.cs 프로젝트: asadm/NETFx
 public BitmapW(String filename)
 {
     holder = new LockBitmap(new Bitmap(filename));
     if (!bitmaplock) { holder.LockBits(); bitmaplock = true; }
 }