How to bind to the list of System.Drawing.Printing.PrinterSettings.InstalledPrinters, which is a static StringCollection, in WPF XAML.
For example, to use it in a ComboBox, so a user can select the printer to use.
How to bind to the list of System.Drawing.Printing.PrinterSettings.InstalledPrinters, which is a static StringCollection, in
Share
Add the namespace for System.Drawing.Print to your XAML code:
Then add the combobox to show the list of printers installed on the system:
Hopefully this will save someone some time.