Advanced Forum Search Results
-
if this was me I would have 'selected' and 'unselected' storyboards.
each new menu button click would check the location of each button and if it was 'selected' start the 'unselected' storyboard to return it to is normal position.
You could skip the storyboard and just move the menu buttons back to there ...
-
Deepzoom is available for Silverlight 2. The editor is a free download, you just add the images you want and save as a Silverlight project then you can change the source code to do what you want on top of the zooming/scrolling.
http://www.microsoft.com/downloads/details.aspx?familyid=457b17b7-52bf-4bda-87a3-fa8a4673f8bf&displaylang=en
-
> User should be able to load a map and then draw on the map image.
Can load binary files from local machine and can saved to isolated storage or upload to server.
> Drawing would be actions such as drawing lines, flood fill, drawing shapes etc
Line, shapes.
Floodfill you might need to be more specific, remember Silverlight ...
-
the title was "Dynamically Generating HTML Pages in Silverlight" and in answer to that Silverlight can cause the browser to open a new page or navigate to a new page. silverlight can also access the HTML DOM and manipulate either directly or via Javascript.
e.g. you have a working javascript only functioning page, add silverlight ...
-
when the canvas is created do you see the background as red/black?
From the code I can see no problem regarding zindex, but it worth investigating if the rest of the application could be 'transparently' obscuring your new control.
Is ther any reason you are doing this with strings ?
I would always create a New Canvas() and then ...
-
if you can call the web service from a browser and get the raw xml then its easy with Silverlight, just use a WebClient (google or search the forums here)
Create a WebClient (System.Net) instance, set the DownloadStringCompleted event delegate to your handler and then execute the connection with DownloadStringAsync
If you then want the xml ...
-
I use the following in my Silverlight code
1 string host = App.Current.Host.Source.ToString();
2 host = host.Substring(0, host.IndexOf("/ClientBin"));
3 WebClient localwebclient = new WebClient();
4 localwebclient.DownloadStringCompleted += new ...
-
If the user can view a PDF then they have already downloaded it, In the same way if you view an image on a web page it is downloaded to the users machine before being displayed.
The only way around this is to not use raw data, the common solution for images is to use flash/silverlight to display an image that is a propriatory format, thus ...
-
MSDN has lots of information about the live spaces feeds and how to consume them.
http://msdn.microsoft.com/en-us/library/bb447732.aspx
-
yes silverlight can read and process xml files, look here http://www.pay4foss.org/jumpstation/twitternice/ (full source included)
the key issue you may run into is that the xml file must reside on the same server or a client access policy file must exist to allow the silverlight to retrieve it.
for the above twitternice, I created a set ...