MakeWrittable() 개인적인 메소드

private MakeWrittable ( ) : void
리턴 void
예제 #1
0
파일: BitmapImage.cs 프로젝트: m13253/xwt
		public void CopyArea (int srcX, int srcY, int width, int height, BitmapImage dest, int destX, int destY)
		{
			dest.MakeWrittable ();
			var nr = dest.NativeRef;
			do {
				InitForToolkit (nr.Toolkit);
				nr.Toolkit.ImageBackendHandler.CopyBitmapArea (Backend, srcX, srcY, width, height, nr.Backend, destX, destY);
			} while (nr != dest.NativeRef);
		}
예제 #2
0
        public void CopyArea(int srcX, int srcY, int width, int height, BitmapImage dest, int destX, int destY)
        {
            dest.MakeWrittable();
            var nr = dest.NativeRef;

            do
            {
                InitForToolkit(nr.Toolkit);
                nr.Toolkit.ImageBackendHandler.CopyBitmapArea(Backend, srcX, srcY, width, height, nr.Backend, destX, destY);
            } while (nr != dest.NativeRef);
        }
예제 #3
0
 public void CopyArea(int srcX, int srcY, int width, int height, BitmapImage dest, int destX, int destY)
 {
     dest.MakeWrittable();
     ToolkitEngine.ImageBackendHandler.CopyBitmapArea(Backend, srcX, srcY, width, height, dest.Backend, destX, destY);
 }
예제 #4
0
파일: BitmapImage.cs 프로젝트: Gaushick/xwt
 public void CopyArea(int srcX, int srcY, int width, int height, BitmapImage dest, int destX, int destY)
 {
     dest.MakeWrittable ();
     ToolkitEngine.ImageBackendHandler.CopyBitmapArea (Backend, srcX, srcY, width, height, dest.Backend, destX, destY);
 }