One silverlight control on asp.net mvc website?

The main website will be MVC, but I need one Silverlight control to allow users to draw images, just basic shapes, lines, squares, triangles, etc.

A Silverlight control may also be required to potentially allow users to draw and comment on video clips.

Is it possible?

+4
source share
1 answer

The simple answer is yes!

Follow the following link to see a demo application developed by some students in the UK. Integration of something like this in your ASP.NET MVC application can be accomplished using utility calls to controller methods that return JSON or strongly typed objects.

http://code.msdn.microsoft.com/SilverPaint

Roberto.-

+2
source

All Articles