gpt4 book ai didi

WPF 绑定(bind)到已安装的打印机列表

转载 作者:行者123 更新时间:2023-12-03 19:57:51 26 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





WPF list available printers and trays

(2 个回答)


2年前关闭。




如何在 WPF XAML 中绑定(bind)到 System.Drawing.Printing.PrinterSettings.InstalledPrinters 列表,这是一个静态 StringCollection。
例如,要在 ComboBox 中使用它,以便用户可以选择要使用的打印机。

最佳答案

将 System.Drawing.Print 的命名空间添加到您的 XAML 代码中:

xmlns:Printing="clr-namespace:System.Drawing.Printing;assembly=System.Drawing"

然后添加组合框以显示系统上安装的打印机列表:
<ComboBox Name="cmbPrinterSelection" Width="300" ItemsSource="{x:Static Printing:PrinterSettings.InstalledPrinters}" SelectionChanged="cmbPrinterSelection_SelectionChanged" />

希望这可以节省一些时间。

关于WPF 绑定(bind)到已安装的打印机列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13488910/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com