コード例 #1
0
ファイル: TextBox.cs プロジェクト: antonargunov/EndingXNA
        public void renderTo(double x, double y, BitmapData target)
        {
            var p = new Point(x, y);

            target.copyPixels(bitmapData, bitmapData.rect, p, null, null, true);
        }