Skip to main content
Home Forums Silverlight Programming Programming with .NET - General Windows.Forms.Integration in Silverlight Application
5 replies. Latest Post by Amanda Wang - MSFT on December 26, 2008.
(0)
Hema123
Member
14 points
116 Posts
12-22-2008 2:53 AM |
How can i add Windows.Forms.Integration in Silverlight Application?
i need to add this dll so that i can use
<WindowsFormsHost>
<WebBrowser>
</WindowsFormsHost>
</WebBrowser>
swildermuth
Star
8320 points
1,546 Posts
12-22-2008 3:57 AM |
The Silverlight .NET Framework has no support for Windows.Forms so, no you can't.
12-22-2008 4:15 AM |
I need a control that removes all HTML tags in Silverlight.
Amanda W...
All-Star
17241 points
1,466 Posts
12-25-2008 4:33 AM |
Hi Hema123,
Hema123:I need a control that removes all HTML tags in Silverlight.
There is not ready control to remove all HTML tags in Silverlight.
We would suggest that you can try to create a javscript function to remove all the Html tags, and then call this function in the silverlgiht to remove.
12-26-2008 9:48 PM |
Can u pls give me the code for javascript
12-26-2008 10:53 PM |
You can try to google it.
There are many function to rmove Html tags using regexp and replace on the internet.
for example: http://gathadams.com/2008/07/31/remove-html-tags-and-javascript-from-pages/