如何在wpf C#中无背景打印CHEQUE

本文关键字:背景 打印 CHEQUE wpf | 更新日期: 2023-09-27 17:57:44

我想打印支票,所以我要拍摄一张背景图像,将文本块放在正确的位置,这样文本就应该放在正确位置。我的要求是我必须将支票放在打印机中,并且我必须在支票上显示值,这样我的意图是在打印后,它就不应该显示支票上的图像支票

private void Button_Click_1(object sender, RoutedEventArgs e)
    {
        PrintDialog dialog = new PrintDialog();
        if (dialog.ShowDialog() == true)
        {
            dialog.PrintVisual(stackPrinting, "stackPrinting");
        }
    }

如何在wpf C#中无背景打印CHEQUE

您的代码隐藏按钮点击应该是这样的,希望它能工作。

grdCheque.Background = new SolidColorBrush();
        PrintDialog dialog = new PrintDialog();
        if (dialog.ShowDialog() == true)
        {
            dialog.PrintVisual(grdCheque, "grdCheque");
            this.Close();
        }