Answered by:
Metro App print

Question
-
hello
I am a new developer in Metro.
How do I print the web page with my metro app like Metro version of IE10 ?
Thursday, April 12, 2012 1:35 AM
Answers
-
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 12:07 PMModerator
All replies
-
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 12:07 PMModerator -
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
Thursday, April 12, 2012 2:52 PM -
Hi, Jeff
Thank you for reply.
Metro is great, I will learn it hard.
Friday, April 13, 2012 3:08 AM