-2

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

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

1 回答 1

1

您单击按钮后的代码应该是这样的,希望它有效。

grdCheque.Background = new SolidColorBrush();
        PrintDialog dialog = new PrintDialog();
        if (dialog.ShowDialog() == true)
        {
            dialog.PrintVisual(grdCheque, "grdCheque");
            this.Close();
        }
于 2016-07-25T12:25:26.030 回答