我的应用程序打印(到打印机)屏幕上显示的信息(使用 Canvas 控件)N 次。
过程是
用户单击一个按钮(称为打印)。
用文本更新画布(通常来自数据库,但对于下面的代码,它是硬编码的)
打印到打印机
用新文本更新画布(同样来自数据库,但对于下面的代码,它是硬编码的)打印到打印机
但是,我无法按照上述过程中的说明让它工作 - 打印机只打印最后一次更新。
为了使这个问题可复制,我附上下面的代码
我的 XAML
<Window x:Class="WpfApplication4.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid>
<Canvas Margin="0,0,0,88" Name="canvas1">
<TextBlock Text="Hello World" Name="TextBlock1" />
</Canvas>
<Button Content="Button" Height="23" HorizontalAlignment="Left" Margin="0,245,0,0" Name="button1" VerticalAlignment="Top" Width="75" Click="button1_Click" />
</Grid>
</Window>
和我背后的代码
using System;
using System.Windows;
using System.Printing;
using System.Windows.Threading;
using System.Windows.Controls;
namespace WpfApplication4
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private void button1_Click(object sender, RoutedEventArgs e)
{
PrintDialog dialog = new PrintDialog();
for (int i = 1; i < 3; i++)
{
//showing this message box fixes the issue
//MessageBox.Show("01");
updateTextblock(i);
//use the dispatcher object to ensure all renders and databinding are completed before sending to print
DispatcherOperation disO;
disO = Dispatcher.BeginInvoke(DispatcherPriority.Loaded, new Action(delegate
{
print(dialog);
}
));
disO.Wait()
}
}
private void print(PrintDialog dialog)
{
//select printer auotmatically
PrintQueue queue = new LocalPrintServer().GetPrintQueue("Canon MG160 series WS");
//assign the printer
dialog.PrintQueue = queue;
dialog.PrintVisual(canvas1, "");
}
private void updateTextblock(int i)
{
TextBlock1.Text = "Number " + i.ToString();
}
}
}
唯一打印的是数字 2
尽管它已经用数字 1 迭代和更新了画布,但它从不打印(打印空白页)。
任何想法我需要做什么才能使每个 Canvas 打印?尽管我可以通过显示消息框来使其工作,但它违背了自动化的目的。
编辑:我现在从我的打印机收到一条错误消息 - “另一台计算机正在使用打印机。” 根据其他网站,我必须等到一项工作完成,然后第二项才会自动启动,但遗憾的是,它永远不会。