문제

I'm writing WPF application which needs to display list of available Printers and corresponding trays.

I can able to get list of available printers by loop through the following line

PrinterSettings.InstalledPrinters

and now stuck up with getting corresponding printer trays. could anybody give sample code?

도움이 되었습니까?

해결책 2

You are looking for PaperSources property - Gets the paper source trays that are available on the printer. (MSDN: http://msdn.microsoft.com/en-us/library/system.drawing.printing.printersettings%28v=vs.110%29.aspx)

다른 팁

    using System.Printing
    ......

    var printers = new LocalPrintServer().GetPrintQueues().Select(v => v.Name);
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top