0

我试图让用户在保存或打印文档之前使用触摸屏对文档进行注释。本质上,我在代码中将文档组装成三个部分——一个 ImageBrush,其中包含在第三方应用程序中创建的一些动态文本的“图片”,一个具有空白表单(透明背景)的 ImageBrush,以及一个代表来自输入的笔画集合触摸屏。我知道这不是创建 XPS 的首选方式,但是我无法在运行时访问动态文本以将其生成为 TextBlocks 等。该文档在 XAML 中定义如下:

<Viewbox x:Name="viewboxDocView" Grid.Row="0">
      <FixedPage x:Name="fixedPage" Width="720" Height="960" HorizontalAlignment="Left" VerticalAlignment="Center" Margin="10">
          <InkCanvas x:Name="inkCanvas" Width="720" Height="960" HorizontalAlignment="Center" VerticalAlignment="Center" ></InkCanvas>
      </FixedPage>
</Viewbox>

在后面的代码中,我将 FixedPage 背景设置为显示动态文本,并将 InkCanvas 背景设置为显示透明表单。

inkCanvas.Background = myImageBrush;
fixedPage.Background = myOtherImageBrush;

它在我的应用程序中显示得很漂亮,可以很好地保存为 XPS 文件,并且在 XPS Viewer 和 Microsoft Reader 中都显示得很漂亮。唯一的问题是当我尝试从这些应用程序中打印时,页面图像很小。这两个图像完整打印并按比例缩小,笔划显示为全尺寸,但在大多数打印机上被裁剪,因此只有左上角部分可见。

我将页面尺寸明确定义为 720 x 960,因为 960 * 1/96" = 10 英寸和 720 * 1/96" = 7.5 英寸,强制在 8.5x11" 页面上至少留出 0.5" 边距。当我打印时,图像正好是 2.4" x 3.2",这意味着打印机分辨率是 960 / 3.2 = 300 dpi,而不是预期的 96 dpi。我知道打印机通常使用 300 dpi,所以这并不完全令人惊讶,但我认为 FixedDocument 的全部意义在于此处描述的 WYSIWYG 概念。

有没有办法将页面明确定义为 7.5" x 10"(或 8.5" x 11",内容居中),以便正确打印?似乎当我开始在 XAML 中调整大小或尝试使用转换时,它会破坏屏幕显示,这最终对应用程序来说更为重要。

4

1 回答 1

0

我仍然想弄清楚如何使我的文件与标准 Microsoft 程序兼容,但现在我创建了一个简单的单窗口 WPF .xps 文件查看器应用程序,它接受文件路径作为命令行参数并正在打印这些正确。显然,我可以使用现有程序中的另一个窗口来完成此操作,除非我似乎无法解决 Windows 打印对话框的线程安全问题。在 XAML 中:

<Window x:Class="Viewer.ViewerWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Document Viewer">
    <Grid>
        <DocumentViewer x:Name="Viewer" />
    </Grid>
</Window>

在代码隐藏中:

public partial class ViewerWindow : Window
    {
        XpsDocument doc;
        string fileName;

        public ViewerWindow()
        {
            InitializeComponent();

            // get file name from command line
            string[] args = System.Environment.GetCommandLineArgs();
            fileName = args[1];

            // size window
            this.WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen;
            this.Height = System.Windows.SystemParameters.PrimaryScreenHeight;
            this.Width = ((System.Windows.SystemParameters.PrimaryScreenHeight * 8.5) / 11);

            // Open File and Create XpsDocument
            if (!File.Exists(fileName) || fileName == null || fileName == "") 
            {
                System.Windows.MessageBox.Show("File Not Found!");
                this.Close();
            }
            else if (!fileName.EndsWith(".xps") && !fileName.EndsWith(".oxps"))
            {
                System.Windows.MessageBox.Show("File not in XPS format");
                this.Close();
            }
            else 
            {
                try
                {
                    doc = new XpsDocument(fileName, System.IO.FileAccess.Read);
                }
                catch (UnauthorizedAccessException)
                {
                    System.Windows.MessageBox.Show("Unable to open file - check user permission settings and make sure that the file is not open in another program.");
                    this.Close();
                }
            }

            // Display XpsDocument in Viewer
            Viewer.Document = doc.GetFixedDocumentSequence();
        }
    }

这是一个临时的解决方法,所以请随时贡献!

于 2015-01-15T22:41:11.617 回答