将 PrintDialog 的 PrintQueue 设置为网络打印机时出错 - C# WPF XAML

Error when setting a PrintDialog's PrintQueue to a networked printer - C# WPF XAML

我正在尝试设置 WPF PrintDialog 以使用用户在表单上设置的值来控制基本打印选项,而无需向他们显示对话框。

我们的目标是让他们设置一次打印选项,然后在一天中使用这些设置数百次而不必更改它们,除非他们决定这样做。

该代码适用于我的机器上安装的所有打印机,网络打印机除外。如果我 select 列表中的网络打印机,我会收到以下错误 -

System.Printing.PrintQueueException: 'An exception occurred while populating the properties for the PrintQueue object. Win32 error: The printer name is invalid.'

奇怪的是,如果我将其中一台网络打印机设置为默认打印机,并添加逻辑以通过将 LocalPrintServer.DefaultPrintQueue 传递给 PrintDialog 进行无人值守打印,此代码有效。

我分析了处理打印机名称的方式,但我似乎无法找出传递网络打印机的正确方式。

这是我当前的代码(我已经尝试了很多次迭代,结果相同,以至于我都记不清了……大声笑)。

XAML- 我正在使用已安装打印机列表填充 XAML 组合框,如下所示 -

    <Window x:Class="PrintDialogTest.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:Printing="clr-namespace:System.Printing;assembly=System.Printing"
        mc:Ignorable="d"
        Title="MainWindow" Height="550" Width="450">
    <Window.Resources>
        <Printing:LocalPrintServer x:Key="localPrintServer1"/>
        <ObjectDataProvider x:Key="printerCollection"
                        ObjectInstance="{StaticResource localPrintServer1}"
                        MethodName="GetPrintQueues">
            <ObjectDataProvider.MethodParameters>
                <x:ArrayExtension Type="{x:Type Printing:EnumeratedPrintQueueTypes}">
                    <Printing:EnumeratedPrintQueueTypes>Local</Printing:EnumeratedPrintQueueTypes>
                    <Printing:EnumeratedPrintQueueTypes>Connections</Printing:EnumeratedPrintQueueTypes>
                </x:ArrayExtension>
            </ObjectDataProvider.MethodParameters>
        </ObjectDataProvider>
    </Window.Resources>.............
    <ComboBox x:Name="cboPrinters" HorizontalAlignment="Left" Height="34" Margin="53,414,0,0" VerticalAlignment="Top" Width="354" ItemsSource="{Binding Source={StaticResource printerCollection}}" DisplayMemberPath="Name" FontSize="14"/>

这很好用,并为我提供了所有已安装的打印机。

如果我 运行 应用程序和 select 除了两台联网打印机之外的任何东西,下面的代码(来自 MainWindow.xaml.cs 打印按钮的点击事件)工作 -

    // Create a PrintDialog  
            PrintDialog printDlg = new PrintDialog();
            // Create a PrintQueue and PrintServer - assign the user selected printer to the PrintQueue
            printDlg.PrintQueue = new PrintQueue(new PrintServer(), cboPrinters.Text);

如前所述,我尝试了多种格式化传递给 PrintQueue 的名称值的方法,但都没有成功。

虽然这可能是解决方法,但它在使用时也会触发错误 -

PrintServerException - “…name is invalid” even though I can access the path from windows

希望我提供了足够的信息,但如果没有,请告诉我,我会添加任何其他需要的信息。

非常感谢任何帮助,并感谢您提前回复。

UPDATE - 如果我使用网络打印服务器的名称对 PrintServer 的实例化进行硬编码,该代码也适用于网络打印机(需要注意)-

printDlg.PrintQueue = new PrintQueue(new PrintServer(@"\NetworkPrintServerNameHere"), (string)cboPrinters.SelectedValue);

但显然这段代码在现实世界中不实用,因为我们的打印机列表中可以有多个 PrintServer 名称。我需要找到一种方法来获取当前 selected 打印机的 PrintServer 名称。

因此,使用为组合框创建记录集的请求顶部的代码,我们可以在运行时以编程方式解析所选记录以获得当前所选打印机所需的 PrintSever 值通过如下设置 -

printDlg.PrintQueue = new PrintQueue(new PrintServer(((System.Printing.PrintQueue)cboPrinters.SelectedItem).HostingPrintServer.Name), (string)cboPrinters.SelectedValue);

我不再遇到错误,并且可以打印到用户选择的任何本地和网络打印机。