예제 #1
0
파일: Lcd.cs 프로젝트: tudor-olariu/monoev3
 public static void DrawBitmap(Bitmap bm, Point p)
 {
   Instance.DrawBitmap(bm,p);
 }
예제 #2
0
파일: Lcd.cs 프로젝트: RoninWest/monoev3
 public void DrawBitmap(Bitmap bm, Point p)
 {
     DrawBitmap(bm.GetStream(), p, bm.Width, bm.Height, true);
 }