I'm developing a Windows Store app in C# that is a self service totem to run in a hospital. When the patient touches a button in the screen, a kind of receipt should be printed. The question is: How to print this receipt directly to the default printer without any more user interactions?
Asked
Active
Viewed 488 times
1
-
Create a PrintDocument object and use the default settings. – Cody Gray - on strike Aug 30 '14 at 03:25
-
1In a store app, all printing goes through the Charms Bar, you can initiate it through your app. Take a look at this [MSDN](http://code.msdn.microsoft.com/windowsapps/Print-Sample-c544cce6/sourcecode?fileId=43921&pathId=1713588077) Print Sample. expecially scenario 2 – Mark Hall Aug 30 '14 at 16:36