|
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.
|
|
We have to install Windows SDK along with .Net framework. Why do we need the SDK if we have the framework?
EDIT:
This isn't just the case for .net development. Also, if you want to develop silverlight apps, you have to install additional sdk. Why?
Started by Sandbox on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
IMHO .NET framework distribution is already large as it is, it won't be good if it grows yet more because of... .
The Windows SDK are included into Windows SDK.
The .NET framework only covers managed application and is a subset of windows API .
|
|
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... .
|
|
I downloaded and installed the Silverlight 3 Tools .
I want to use the Silverlight server control in an ASP.net page, but I don't have the Silverlight tab in my toolbox.
I also can't find System.Web.Silverlight.dll to add it myself.
Started by Ronnie Overby on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You need to build the <"> <img src="http://go....
Silverlight control is still available as part of the Silverlight 2 SDK, and on the MSDN Code GalleryThat will be because in silverlight 3 that control has been removed.
|