Advanced Forum Search Results
-
Yes that is correct.
If you do not want that, you could also make use of the DownloadProgress event:
http://silverlight.shinedraw.com/#/item/4a7404f48a3db
Then your XAP doesn't get bigger.
-
Take a look at a tutorial like this:
http://www.silverlight-training-guide.com/image-control.html
If you have any questions, don't hesitate to ask! :)
-
Can't you embed the images in the XAP file, by making them embedded resources?
Otherwhise you could try showing a waitscreen while you trigger an async download?
-
Anyone else with a similar problem? I'm really looking for a solution!
-
Something similar is possible. I don't know what your goal is but try looking at the following URL:
http://silverlight.net/quickstarts/htmlbridge1.aspx
Scroll down to "CALLING MANAGED CODE FROM JAVASCRIPT".
Because with the call from javascript you can manipulate the UIelement you want. Or get information of that UIelement ...
-
Are you using the latest toolkit and Silverlight 3? Then you will have a "IsSelected" property available. Earlier versions of the toolkit don't have that option.
-
Could you give us more information about the problem? Because I think nobody can figure out what the exect problem is based on the lack of information right now. Could you paste the template here?
-
I think this might help you:
Why are some settings unavailable?
Certain computer configurations can disable features of the Silverlight auto-updater. The following sections describe the configurations in which the specified options are not available.
"Install updates automatically" option not available
If you are using Windows Vista ...
-
You can try using two controls:
The community project called Deep Earth. It's very good and has many features.
http://www.codeplex.com/deepearth
You can also use the new Silverlight Mapcontrol from Silverlight. It's very easy to use ...
-
Lets say you have a Employee CLR object. Which has a Firstname and Lastname. The ValueMemberBinding of the AutoCompleteBox is on the Firstname. The DataTemplate contains a grid with 3 columns showing the Firstname, Lastname and a Number field used as a reference for the internal administration. The objects are in a generic list returned by WCF, ...