|
I have Downloaded Silverlight3 ToolKit and Silverlight SDK. Now how to configure it with visual studio 2008? VS2008 is not showing option for creating silverlight application.
Started by jolly on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It contains the developer....
Seems everyone gets confused about this ;-)
You need the Silverlight Tools for Visual Studio package.
Begun experimenting with the SL3 SDK and just had to install it against VS.Net 2008 SP1, and I was good to go.
|
|
The following code snippet is from the Silverlight SDK and I am trying to understand the reason it is the way it is. Can anyone explain the need for the for loop?
internal static DependencyObject GetVisualRoot(DependencyObject d) { DependencyObject root...
Started by Ori on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The loop is an unrolled....
It's walking up the tree looking for any element that is either parentless or not a FrameworkElement .
The loop will traverse through each parent until it failed to cast .
It's probably Microsoft style of defining infinite loop.
|
|
I currently have a recently started project in development with a 2010 target date developed primarily in Silverlight 2, making use of the March Silverlight 2 Toolkit.
Now that Silverlight 3 is gold, is there any reason to not migrate the project to Silverlight...
Started by David on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Some of the controls went from toolkit to SL3 of changes between... .
It can help you mitigating the toolkit release you're using and Silverlight 3.
=9442b0f2-7465-417a-88f3-5e7b5409e9dd ), check out Changes.docx in the Silverlight 3 SDK.
|
Ask your Facebook Friends
|
I am already familiar with Silverlight programming but not have any experience with GIS.
my role as silverlight developer is only to display existing GIS data.
If you guys have any experience with arcGIS silverlight control & api , what else do you think...
Started by Anwar Chandra on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
As an aside, the SDK also....
A license, you can use bing maps in the ESRI silverlight control--there are assemblies in the SDKyou don't need alot, you can dl the SDK from ESRI and then check out thier help site they have crap for that.
|
|
I've been searching through the Microsoft Silverlight site, and I am guessing the answer to my question will be no.
But is there any non official or official version of the Silverlight development SDK for Mac OS?
I want to avoid installing Windows, but...
Started by fmsf on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
It is very pleasant to use!
You can grab the Silverlight....
Luck!
Link Heaven:
Eclipse 4 Silverlight A video of Shawn Wildermuth showing this at the MIX09 Mac OS X to develop with Silverlight 3, using IronRuby and IronPython and TextMate.
|
|
Hi,
is possible development for Silverlight in Visual Basic 2005? On the Microsoft website i found only the SDK for 2008.
Thank You Alexander Nagy
Answer Snippets (Read the full thread at stackoverflow):
Although in the past you SP1 or Visual Web Developer Express with SP1 Silverlight Tools for Visual Studio 2008 SP1 or Visual Web Developer Express with....
To develop Silverlight 2 applications [source: http://silverlight.net/getstarted/ ].
|
|
I see that assemblies compiled with Silverlight SDK v2.0 as well as v3.0 both reference v2.0.5.0 of mscorlib.dll, system.dll, etc.
How do I determine that assembly X is a v2.0/v3.0 assembly?
Started by Silverlight_newbie on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
What happens when Silverlight 4 comes out, for instance? What if the next release fixes some behavior that you customized for a Silverlight 3 issue?
It is correct....
It can become a maintainence nightmare.
On the Silverlight version...
|
|
Is there a javascript function I can use to detect whether a specific silverlight version is installed in the current browser?
I'm particularly interested in the Silverlight 2 Beta 2 version. I don't want to use the default method of having an image behind...
Started by Mark Ingram on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Please actually use the latest script available at http://....
Http://msdn.microsoft.com/en-us/library/cc265155(vs.95).aspx
var hasSilverlight = Boolean(window.Silverlight); var hasSilverlight2 = hasSilverlight && Silverlight.isInstalled('2.0');
Etc... .
|
|
When will Silverlight 4 come out?
Mary Joe Foley at ZDNet speculates (from a slideshow ) that VS2010 will be released in the April 2010 timeframe. Will Silverlight 4 make it to RTW by then?
What features will it have? Will Silverlight RIA be part of the...
Started by foson on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Silverlight 4 beta 1 was announced at PDC last week and is available to download here.
Requests.
|
|
For the life of me, I can't seem to find the standard Silverlight loading animation, the one with swirling balls (hmmm ... that just doesn't look/sound right ... anyway) ... is this somewhere in an SDK?
Are there any web sites with busy animations that...
Started by mattruma on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The standard loading screen is actually embedded inside the native Silverlight code, since.
|