我正在使用Silverlight 4 RichTextBox来捕获将要打印的数据。我的问题是当我使用下面的代码进行打印时,RichTextBox周围的边框也被打印,即使BorderThickness设置为0.
PrintDocument theDoc = new PrintDocument();
theDoc.PrintPage += (s, args) =>
{
args.PageVisual = MyRTB;
args.HasMorePages = false;
};
答案 0 :(得分:0)
使用BorderBrush =“{x:Null}”
进行排序