摘要: Silverlight中的打印只有一个类,那就是PrintDocment这个对象来实现。下面我用两种方法来实现Silverlight的打印:第一种:private void btnPrint_Click(object sender, RoutedEventArgs e) { PrintDocument document = new PrintDocument(); // tell the API what to print document.PrintPage += (s, args) => ... 阅读全文
posted @ 2012-04-13 09:09 佳园 阅读(7899) 评论(0) 推荐(1) 编辑