Advanced Forum Search Results
-
The christmas edition of the contest started at 16 Dec and will continue till 31 Jan.
This time all the submittals will be judged by jury with members: Adam Kinney, Chris Anderson, Dave Campbell, Emil Stoychev, Michael Sync, Shawn Wildermuth and Tim Heuer.
Check the announcement here: ...
-
ilves,
This should work perfect for you: Image slider control in Silverlight 2
There are also some nice implementations here: Weather Control
-
I presume that you want to get the path from the XML file based on the imageName and when you are moving your mouse over an image you can get its imageName. In this case you can use LINQ to XML to read from the XML. It's quite simple. You can read this article in order to see the whole workflow - Using LINQ to XML in Silverlight 2. ...
-
There is a reflection sample available here that you can download and try.
-
It is time to vote which article should win the contest. There are 8 great articles submitted in total.
Silverlight and Drupal: Syndication
Tutorial: Create a Silverlight 2 User Control from a Popup Control
Silverlight and Drupal: Popular Content
Silverlight ComboBox
Virtual earth deep zooming
Find Your Books in ...
-
Try this code:
XDocument doc = XDocument.Load( "data.xml" );
List XPlanetItems = ( from p in doc.Descendants( "Planet" )
select new Planet()
{
ID = ( double ...
-
Hi pchyt,
Can you post your XML so I can see what the problem could be?
In the mean time you can take a look at this article Using LINQ to XML in Silverlight 2
-
Hi The Mask, Read about the basics of creating custom controls here - http://www.silverlightshow.net/items/Creating-a-Silverlight-Custom-Control-The-Basics.aspx
The first thing I notice in your code is that you inherit from UserControl - instead, you should inherit from Control.
Then, there is no Template defined. You can try this: ...
-
Hi, Bernardo
Here is exactly what you are searching for: http://www.silverlightshow.net/items/Silverlight-LinkLabel-control.aspx
This control recognizes the URLs in the text and make them hyperlinks. You can also use a pattern to make specific words from your text act as a link. Something like:
Hello there, I want this word to ...
-
Hi hunsatyping,
No problem, I think you have chosen the best solution in order to workaround this problem and continue the development. If I find something will share it immediately with you.
Good luck!