Big Boss
Big Boss

Reputation: 218

Can I print content in Silverlight

Flash provides a simple way to print the contents. Is there a way to do the same in silverlight also

Upvotes: 0

Views: 735

Answers (1)

TStamper
TStamper

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

Related Questions