I'm trying to add this Silverlight 4 control to my project. I went to the downloads page, and it's full of VS solutions/projects/.cs files. I'm new to Silverlight, and I don't really know how to get the control from that. Help?
Update: I tried following roufamatic's instructions. At this point, I was still unsure how to use the control, so I tried the following code:
mpost.SilverlightSingleFileUpload.MainPage singleFileUpload = new mpost.SilverlightSingleFileUpload.MainPage();
singleFileUpload.Width = singleFileUpload.Height = 100;
Unfortunately, the app crashes on the first of the above lines:
Could not load file or assembly 'mpost.SilverlightMultiFileUpload.Controls, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.
What else can I try?