Reputation: 218
Flash provides a simple way to print the contents. Is there a way to do the same in silverlight also
Upvotes: 0
Views: 735
Reputation: 30384
Write this in Onclick handler:
window.document.execCommand("Print");
IE will bring up a print dialog to give options for printing
If that doesn't work I found a blog posted by someone that focuses on printing in Silverlight found here here
Upvotes: 1