TomC
TomC

Reputation: 17

How to bring up printers menu in c# with a button?

im building an app which makes it possible to print. I've managed to make it work the only thing i can't figure out is how to add code to a button so the button brings up the side menu with the available printers.

Upvotes: 0

Views: 424

Answers (1)

AcidJunkie
AcidJunkie

Reputation: 1918

var dlg = new PrintDialog();
dlg.ShowDialog();

Upvotes: 1

Related Questions