【发布时间】:2011-02-11 21:30:48
【问题描述】:
如果我有一个richTextBox 并在其上运行DrawToBitmap,它不会在richTextBox 内绘制任何文本。
Bitmap b = new Bitmap(rtb.Width, rtb.Height);
inputControl.DrawToBitmap(b, new Rectangle(0, 0, b.Width, b.Height));
有没有办法解决这个问题?
【问题讨论】:
标签: c# controls drawtobitmap