In my UWP application, I wanted to print a document without showing the print UI.
Normally we use PrintManager.ShowPrintUIAsync()
But I wanted to print without showing the UI.
In my Research, I found that there's no such thing in UWP to print directly without showing Preview. But it can be done through
FullTrustProces Launcher (or) Brokered Component.
I am unaware of both of this 2 processes. Can someone tell me the way to use them in detail or any other way to get print without showing the Preview or sending stream directly to the Printer?
Edit1: Someone tageed it as a duplicate, so i explained the difference between the 2 questions. It's not the duplicate of that question. My question clearly asks which process shall i use whether the FullTrustProcess Launcher or Brokered Component. The question that person tagged is asking whether there's a way to print silently. But my question is which method is best.