Advanced Forum Search Results
-
I uploaded a new version of my Silverlight WebPart, it now works with Silverlight 3.0
The WebPart will let you browse through a document or picture library in SharePoint and display the items in a cool i-tunes style coverflow control.
For more details and download see http://www.triplewood.com/silverlight
Ian
-
I’ve just released a Silverlight Web Part that shows SharePoint documents and pictures in a fancy silverlight interface.
You can download it at: http://www.triplewood.com/silverlight
Give it a whirl.
Ian Campbell
http://iancampbell.blogspot.com/
-
Sorry. Last post was a false dawn.
Still unable to get a custom silverlight control loaded. (unless using fiddler)
If anyone gets this working please post.
Many Thanks
-
Thanks BinaryJam man you gave me a starter;
If you add a folder called Silverlight to /_wpresources
Change /_wpresources/Silverlight to scripts only
Add
Page.xaml which contains reference (x:Class="SilverlightProject1.Page;assembly=/_wpresources/Silverlight/SilverlightProject1.dll") ...
-
hi binaryjam man.
I've written a webpart. The webpart hosts the silverlight control and pulls the page.xaml from a doclib.
The Page.xaml contains:
x:Class="SilverlightProject1.Page;assembly=/ClientBin/SilverlightProject1.dll"
I then created a /ClientBin folder and set to scripts only and placed SilverlightProject1.dll in ...
-
This works great, anyone figured out loading custom controls which hang out in a seperate dll?
My app is made up of;
mySilverlight.dll (main)
mySilverlightCustomControl.dll
I put them both in \Clientbin. The main dll is found but the custom control cannot be found.
I loaded up fiddler to see where silverlight was going to pick up ...
-
Hi,
I'm trying to host some Silverlight 1.1 in SharePoint.
I've created a \Clientbin and put my silverlight dll (mySilverlight.dll) in there. It works great!
I then added a silverlight control in a seperate dll (myCustomSilverlightControl.dll) and put it in my \Clientbin.
The custom control dll could not be found and could not be loaded, ...