Metro App print
-
Thursday, April 12, 2012 1:35 AM
hello
I am a new developer in Metro.
How do I print the web page with my metro app like Metro version of IE10 ?
All Replies
-
Thursday, April 12, 2012 12:07 PMModerator
Welcome new developer!
The samples are a great resource for how to do things:
The first item returned is probably what you want to study.
-Jeff
Jeff Sanders (MSFT)
- Proposed As Answer by Jeff SandersMicrosoft Employee, Moderator Thursday, April 12, 2012 12:07 PM
- Marked As Answer by Qixing Ping Friday, April 13, 2012 3:08 AM
-
Thursday, April 12, 2012 2:52 PM
Also after the suggested reading, make sure any thing you want printed is declared via CSS and what you DO NOT want to print is also declared CSS. It's a very interesting concept that was used for METRO, but after understanding the design concept, I loved it!
<style media="print" type="text/css"> .noprint { display:none; } </style>
<style media="screen" type="text/css"> .noscreen { display:none; } </style>
- Proposed As Answer by Jeff SandersMicrosoft Employee, Moderator Thursday, April 12, 2012 2:54 PM
-
Friday, April 13, 2012 3:08 AM
Hi, Jeff
Thank you for reply.
Metro is great, I will learn it hard.


