Page view counter

Silverlight Tips of the Day - Blog by Mike Snow

Game Programming with Silverlight

Silverlight Version 2 RC0 Released!!

Version 2 of the Silverlight developer runtime along with the Silverlight Tools is now available. This release candidate will give developers the chance to convert their sites from Beta 2 –> Release before the final release of the runtime is out.

Please check out http://silverlight.net/GetStarted/sl2rc0.aspx for download details that include the developer runtime, Silverlight Tools and Blend.

Also, check out ScottGu’s great blog on this release:

http://weblogs.asp.net/scottgu/archive/2008/09/25/silverlight-2-release-candidate-now-available.aspx

A document detailing the breaking changes between Beta2 and Release can be downloaded here.  Below I have outlined a high level overview of the content from this document. If you need further details on a particular breaking change, please refer to the document.

Breaking Change #1. Your Web Page.

If you have a project already developed for beta-1 or beta-2 you will need to make an adjustment to your web page that hosts the Silverlight control. For an HTML page change you will need to change the MIME type. To do this, open your HTML Page, change “x-silverlight-2-b1” or “application/x-silverlight-2-b2” to “application/x-silverlight-2”.

<object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">

If you use an ASPX based Page, open your ASPX page and change the Minimum Version to “2.0.31005.0”:

<asp:Silverlight ID="Xaml1" runat="server" Source="~/ClientBin/TextBlockTest.xap" MinimumVersion="2.0.31005.0" Width="100%" Height="100%" />

Breaking Change #2. ContentPresenter.

ContentPresenter now derives from FrameworkElement instead of Control.

Breaking Change #3. Layout Rendering

Layout no longer causes elements to be rendered at sub-pixel locations. The layout system in Silverlight has been modified to round final measure and arrange values to integers when placing elements on the screen (“pixel snapping”). The result is crisper lines, more consistent rendering look, and fewer rendering artifacts. It is possible that this change will affect how your animations render, in which case you might want to set UseLayoutRounding to false. Also, this change does not affect transforms. If you apply a transform to an element, it may still be rendered at a sub-pixel location.

Breaking Change #4. Cross Domain Hosts.

Cross domain hosts of Silverlight must set the right MIME type for XAP (application/x-silverlight-app)

Breaking Change #5. HttpWebRequest.EndGetResponse()

Exceptions now thrown in HttpWebRequest.EndGetResponse()

Before:

  • Some security exceptions (e.g. cross-scheme violations) were being raised in HttpWebRequest.BeingGetResponse()
  • All other request error conditions were being returned as 404s.

Now:

  • Error conditions are now raised as exceptions in HttpRequest.EndGetResponse().
  • Request security errors (e.g. requests not allowed by cross domain policy) raise SecurityExceptions
  • Non-successful requests (e.g. those that returned 404s) raise WebExceptions. The WebException.Response is set to HttpStatusCode.NotFound. This is compatible with the desktop.

Breaking Change #6. Font URI

Font URI is Restricted to Assembly Resource. Ensure your font is marked as a "resource" in the project system.

Breaking Change #7. Browser.HtmlElementCollection.

Browser.HtmlElementCollection replaced by Browser.ScriptObjectCollection. Change existing references to HtmlElementCollection to ScriptObjectCollection

Beta 2
HtmlElement myHtmlElement = someOtherHtmlElement.Children[5];

Release
HtmlElement myHtmlElement = (HtmlElement)someOtherHtmlElement.Children[5];

Breaking Change #8. Active Animation

Exceptions When Changing Some Properties on an Active Animation

Breaking Change #9. System.Windows.Controls.Extended.dll

System.Windows.Controls.Extended.dll renamed to System.Windows.Controls.dll. Change all references from System.Controls.Extended to System.Windows.Controls and recompile your application.

Breaking Change #10. VisualStateManager Changes

VisualTransition.Duration has changed to VisualTransition.GeneratedDuration. This value will now only affect the generated transitions, and not the VisualTransition.Storyboard.

Breaking Change #11. KeyDown

KeyDown Sent Synchronously

Breaking Change #12. MeasureOverride/ArrangeOverride

MeasureOverride/ArrangeOverride on Canvas Now Sealed

Breaking Change #13. UriTypeConverter

UriTypeConverter moved to System.dll

Breaking Change #14. HtmlPage.UnregisterScriptableObject

HtmlPage.UnregisterScriptableObject Removed. Developers can now re-use the same script registration key for RegisterScriptableObject. This allows developers to change the underlying managed object associated with a scriptable entry point.

Breaking Change #15. RenderingEventArgs

  • RenderingEventArgs is moved from System.Windows to System.Windows.Media
  • RenderingEventArgs.ctor() is now internal
  • System.Windows.RenderingEventHandler has been removed.

Breaking Change #16. ContentPresenter and ContentControl.

The following properties were removed from ContentPresenter and ContentControl:

  • TextAlignment
  • TextDecorations
  • TextWrapping

Breaking Change #17. FileDialogFileInfo Type and OpenFileDialog.SelectedFile

  • The System.Windows.FileDialogFileInfo type is being removed. Its functionality is now being exposed via its base System.IO.FileInfo type to transparent code within Silverlight’s sandbox.
  • System.Windows.Controls.OpenFileDialog has a couple properties which consume and expose FileDialogFileInfo. They were modified to return the FileInfo type.
  • In addition, the property names SelectedFile and SelectedFiles were also changed to File and Files.

Breaking Change #18. FullAccess Option

The ability for arbitrary scripts to walk the element tree, register for and get notified on events, and use the Silverlight 1.0 Downloader from script has been curtailed in a cross-domain app deployment scenario. The application manifest previously supported the ability for app author to designate the ExternalCallersFromCrossDomain attribute with the values NoAccess (default in cross-domain), ScriptableOnly and FullAccess. Support for the FullAccess option has been removed. Many of the purposes you would have relied on the FullAccess option can now be fulfilled via the Scriptable object feature, with minor additional work on your part.

Breaking Change #19. KeyFrameCollection Changes

Virtual methods Add, Contains, Indexof, Insert, Remove, get_Item, set_Item are no longer declared on the following collections:

  • ColorKeyFrameCollection.
  • DoubleKeyFrameCollection
  • ObjectKeyFrameCollection
  • PointKeyFrameCollection
  • PointKeyFrameCollection
  • StrokeCollection

Breaking Change #20. Request stream

You must close the request stream on an HttpWebRequest before calling BeginGetResponse(). Previously BeginGetResponse() would close an open request stream.

Breaking Change #21. HtmlWindow references on Safari/Mac

HtmlWindow references on Safari/Mac will no longer evaluate to true.

Breaking Change #22. WebClient EventArg

Address property removed from all WebClient EventArg classes

Breaking Change #23. Constructors Made Internal

You can no longer create the objects listed below because their associated constructors have been made internal:

  • SizeChangedEventArgs
  • TextChangedEventArgs
  • DownloadProgressEventArgs
  • ExceptionRoutedEventArgs
  • KeyEventArgs
  • MouseButtonEventArgs
  • MouseEventArgs
  • StartupEventArgs
  • Expression
  • GeneralTransform
  • Geometry
  • ImageSource
  • PathSegment
  • SetterBase
  • Transform
  • BindingExpressionBase
  • InputMethod

Breaking Change #24. System.Xml exception type

In the methods/constructors shown below, we will no longer be checking for null arguments. As a result, the usage of null arguments will result in a NullReferenceException. In previous builds of Silverlight, use of a null argument would result in an ArgumentNullException being thrown. There is no change in functionality, just the type of exception that is being thrown.

  • XmlReader.IsName method
  • XmlReader constructor
  • XmlReader.MoveToAttribute method
  • XmlReader:IsNameToken method
  • XmlNamespaceManager constructor
  • XmlReader.Nametable.Add method
  • XmlReader.Nametable.Get method
  • XmlCharCheckingWriter.WriteQualifiedName method
  • XmlCharCheckingWriter.WriteDocType method
  • XmlConvert.ToBoolean method
  • XmlConvert.ToDouble method
  • XmlConvert.ToSingle method
  • XmlConvert.ToDateTime method

Breaking Change #25. Accessible constructors

Cannot create classes in XAML that do not have accessible constructors

Breaking Change #26. AG_E_UNKNOWN_ERROR

In previous versions of Silverlight, when media failed because a media file was not available, a MediaFailed event was fired but if the MediaFailed event was not handled by the developer, the end user would not be notified of the failure. Now when a handler is not hooked up to the MediaFailed event, the error bubbles up to the default OnError handler of the plug-in and AG_E_UNKNOWN_ERROR is displayed to the user.

Fix Required: Attach the MediaFailed event to your MediaElement objects and handle errors as appropriate.

Breaking Change #27. Generic.xaml resource dictionary

Platform looks for generic.xaml as a resource at themes/generic.xaml

Breaking Change #28. HTTP Polling Duplex OM Changes and Reengineering

  • PollTimeout setting on the server side (PollingDuplexHttpBinding and PollingDuplexBindingElement) has been renamed to ServerPollTimeout
  • PollTimeout setting on the PollingDuplexBindingElement (client side) has been renamed to ClientPollTimeout.
  • PollTimeout setting on the PollingDuplexHttpBinding (client side) has been cut. In most scenarios, it should not be necessary to change this. If a change is necessary, it can be achieved through the ClientPollTimeout on the PollingDuplexBindingElement.
  • Client-side support has been cut from the non-Silverlight (server-side) polling duplex assembly (i.e. BuildChannelFactory will throw a NotSupportedException). That is, in RTM, the client side for polling duplex must be Silverlight (and the server side must be the regular .NET Framework, but this restriction was already in place in Beta2).
  • Default timeouts have been changed for the Duplex channel. For most common scenarios, the new out-of-the-box defaults should be appropriate and there is no need to change them.
  • An error (404) on a polling request will cause the duplex channel to fault.
  • Various invalid messages used to be ignored by the Duplex stack but will now be rejected.
  • If any HTTP error (404,500,…) is encountered during a SOAP call, a CommunicationException is now thrown instead of a ProtocolException.

Breaking Change #29. IXcpControl COM interface

The following splash screen related properties added to IXcpControl interface are being broken out and being moved to a new IXcpControl2 interface:

  • get_OnSourceDownloadComplete
  • get_OnSourceDownloadProgressChanged
  • get_SplashScreenSource
  • put_OnSourceDownloadComplete
  • put_OnSourceDownloadProgressChanged
  • put_SplashScreenSource

Breaking Change #30. Content-Type is allowed on cross domain request by default

Both supported cross domain policy files (crossdomain.xml, clientaccesspolicy.xml) no longer need to explicitly allow the Content-Type request header. The Content-Type header is always settable on POST xdomain requests, as long as the request itself is allowed by a cross domain policy file.

In addition, the LoadRuntime function is also being moved to IXcpControl2.

Breaking Change #31. Delegate type check

f you want to combine two delegate objects they should be of the exact same delegate type.

Breaking Change #32. Miscellaneous API Changes

  • UIElement.HitTest method has moved to the VisualTreeHelper class and renamed to VisualTreeHelper.FindElementsInHostCoordinates.
  • Moved DependencyPropertyChangedEventHandler delegate type from System.Windows.Controls to System.Windows namespace.
  • Control.IsTabStop defaults to true. Now, all Control derived classes (directly or indirectly) have IsTabStop set to true except, UserControl, HyperlinkButton, ScrollViewer and ListBox.
  • WebHeaderCollection.Keys property was replaced with the AllKeys property.
  • WebHeaderCollection.Headers property was renamed to Keys.
  • WebRequest.RegisterPrefix() now returns false in failure cases per the interface contract from the desktop framework rather than throwing an exception.
  • WebResponse.Dispose(bool explicitDisposing) was removed.
  • Deployment.PartProperty is now read only.
  • Deployment.EntryPointAssemblyProperty is now read only.
  • Deployment.EntryPointTypeProperty is now read only.
  • Deployment.RuntimeVersionProperty is now read only.
  • Deployment.ExternalCallersFromCrossDomainProperty is now read only.
  • Thumb.IsDragging is now read only.
  • Slider.IsFocused is now read only.
  • ButtonBase.IsFocused is now read only.
  • ButtonBase.IsMouseOver is now read only.
  • ButtonBase.IsPressed is now read only.
  • ToolTipService.GetToolTip is now private.
  • IRawElementProviderSimple is now sealed and has a private default constructor.
  • Setter.PropertyProperty is now internal. Please use the CLR property instead of the DependencyProperty.
  • Slider.UpdateTrackLayout() is now internal.
  • Slider.OnOrientationChanged() is now internal.
  • Slider.OnIsFocusChanged(DependencyPropertyChangedEventArgs e) is now internal.
  • ComboBox.get_IsSelectionActive() is now internal.
  • ComboBox.ScrollIntoView(Int32 index) is now internal.
  • ComboBox.get_SelectionBoxItemTemplate() now returns System.Windows.DataTemplate.
  • PasswordBox.SelectionChanged is now private.
  • MouseEventArgs.Handled was moved to MouseButtonEventArgs.
  • RenderTargetBitmap was renamed to HostingRenderTargetBitmap and moved from System.Windows.Media.Imaging to namespace System.Windows.Interop.
  • AutomationPeer constructor is now protected.
  • TriggerActionCollection.Item now takes System.Windows.TriggerAction instead of System.Windows.Media.Animation.BeginStoryboard.
  • TriggerCollection.Item now takes System.Windows.TriggerBase instead of System.Windows.EventTrigger.
  • RoutedEventArgs.Source was renamed to OriginalSource and is now read-only.
  • ITableItemProvider and ITableProvider are now derived from IGridItemProvider and IGridProvider.
  • The KeyboardNavigation class is now internal.
  • ColumnDefinitionCollection constructor was made internal.
  • InlineCollection constructor was made internal.
  • ItemCollection constructor was made internal.
  • RowDefinitionCollection constructor was made internal.
  • UIElementCollection constructor was made internal.
  • TriggerCollection constructor was made internal.
  • Listbox field ListBoxItem._itemsControl is now internal.
  • Ink.Stroke constructor changed to ctor(System.Windows.Input.StylusPointCollection).
  • CanConvertFrom(Type sourceType) changed its signature to CanConvertFrom(ITypeDescriptorContext context, Type sourceType).
  • CanConvertTo(Type destinationType) changed its signature to CanConvertTo(ITypeDescriptorContext context, Type destinationType).
  • ConvertFrom(object value) changed its signature to ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value).
  • ConvertFromString(string text) now is ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) where value of type string.
  • ConvertTo(object value, Type destinationType) changed its signature to ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType).
  • ConvertToString(object value) now is ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) with destinationType of type string.
  • ItemCollection constructor is no longer available so any code that tries to instantiate an ItemCollection directly will no longer compile. This class is supposed to be instantiated only within ItemsControl.
  • ContentPresenter now derives from FrameworkElement instead of Control.
  • Control.OnIsEnabledChanged was removed. Now use IsEnabledChanged for extended controls.
  • DownloadProgressEventHandler was removed.
  • The following converters were removed:
    • TextDecorationCollectionConverter
    • FontStretchConverter
    • FontStyleConverter
    • FontWeightConverter
    • FontFamilyConverter

 

Thank you,
--Mike Snow

Comments

ScottGu's Blog said:

This evening we published the first public release candidate for Silverlight 2. There are still a handful

# September 26, 2008 12:54 AM

Microsoft Weblogs said:

Version 2 of the Silverlight developer runtime along with the Silverlight Tools is now available. This

# September 26, 2008 1:07 AM

Visual Web Developer Team Blog said:

Version 2 of the Silverlight developer runtime along with the Silverlight Tools is now available. This

# September 26, 2008 1:14 AM

BusinessRx Reading List said:

This evening we published the first public release candidate of Silverlight 2. There are still a small

# September 26, 2008 1:22 AM

Mirrored Blogs said:

This evening we published the first public release candidate of Silverlight 2. There are still a small

# September 26, 2008 1:44 AM

Readed By Wrocław NUG members said:

This evening we published the first public release candidate of Silverlight 2. There are still a small

# September 26, 2008 1:52 AM

Jeff Handley said:

Silverlight 2 Post Beta2 Gotcha - ContentPresenter

# September 26, 2008 2:37 AM

Il blog del team MSDN Italia said:

Oggi è stata resa disponibile la Release Candidate(RC) di Silverlight 2 . Questa RC è pensata per scopi

# September 26, 2008 2:45 AM

Mikael Söderström said:

Nu börjar vi närma oss släppet av Silverlight 2 RTW (Released To Web)! Idag släpptes Silverlight 2 Dev

# September 26, 2008 2:56 AM

Thomas Lebrun said:

Scott Guthrie l’annonce sur son blog : la première RC de Silverlight 2 vient de paraitre. Au menu, on

# September 26, 2008 3:17 AM

  Silverlight Version 2 RC0 Released | Open Coding said:

Pingback from  &nbsp; Silverlight Version 2 RC0 Released | Open Coding

# September 26, 2008 3:19 AM

» Silverlight 2 Release Candidate 0 is now available. | Rags to Riches said:

Pingback from  &raquo; Silverlight 2 Release Candidate 0 is now available. |  Rags to Riches

# September 26, 2008 3:24 AM

Blog del CIIN said:

Desde ayer por la tarde ya tenemos disponible la primera release candidate (RC) de Silverlight 2.0 tal

# September 26, 2008 3:42 AM

using System.mohojojo.net; said:

Hát szerintem semmit nem kell hozzá tenni a címhez, csak hogy milyen változások történtek. Elég radikális

# September 26, 2008 3:42 AM

Disponible la primera Release Candidate de Silverlight 2.0! « Pasi??n por la tecnolog??a… said:

Pingback from  Disponible la primera Release Candidate de Silverlight 2.0! &laquo; Pasi??n por la tecnolog??a&#8230;

# September 26, 2008 3:44 AM

Silverlight 2 RC0 v??ljas wohoooo :)! « H??bevalge nagu Silverlight :) said:

Pingback from  Silverlight 2 RC0 v??ljas wohoooo :)! &laquo; H??bevalge nagu Silverlight :)

# September 26, 2008 3:57 AM

Сергей Лутай said:

Работа над исправлениями багов еще продолжается, но уже можно существующие приложения переводить на Silverlight

# September 26, 2008 4:32 AM

Блог Сергея Пугачёва said:

Итак, сегодня вышел Silverlight 2 RC0 (релиз кандидат). Обратите внимание, что вышла только версия для...

# September 26, 2008 4:43 AM

Cesar de la Torre - BLOG said:

Great news!, yesterday we launched Silverlight 2.0 Release Candidate! It is quite probable that the final

# September 26, 2008 4:48 AM

2008 September 25 - Links for today « My (almost) Daily Links said:

Pingback from  2008 September 25 - Links for today &laquo; My (almost) Daily Links

# September 26, 2008 4:58 AM

VBandi's blog said:

Silverlight 2 is definitely getting closer. The RC0 has just been released , with an aligned VS tool

# September 26, 2008 7:23 AM

Cesar de la Torre - BLOG said:

Great news!, yesterday we launched Silverlight 2.0 Release Candidate! It is quite probable that the final

# September 26, 2008 8:28 AM

LetsBlogAbout.NET said:

Microsoft releases Silverlight 2 Release Candidate 0

# September 26, 2008 10:07 AM

Nuno Filipe Godinho said:

&#160;&#160; One more step towards the RTM version of Silverlight 2.0 was made today with the announcement

# September 26, 2008 10:26 AM

Nuno Filipe Godinho said:

&#160;&#160; One more step towards the RTM version of Silverlight 2.0 was made today with the announcement

# September 26, 2008 10:27 AM

Nuno Filipe Godinho said:

# September 26, 2008 10:36 AM

.NET & Funky Fresh said:

Details here . As far as I can tell from the docs, they removed a lot of things, made a bunch of things

# September 26, 2008 11:38 AM

XAMLab(ザムラボ) said:

Silverlight 2 RC0 (製品候補版)が公開されました

# September 26, 2008 12:25 PM

mjayg said:

I'm trying to get an app working and this change has broken it:

"UIElement.HitTest method has moved to the VisualTreeHelper class and renamed to VisualTreeHelper.FindElementsInHostCoordinates."

I'm just learning SilverLight and am fairly new to this kind of scripting. How would I make this change in my code?

Thanks!

# September 26, 2008 12:42 PM

sayo.net said:

Silverlight2 RC发布,介绍了一些RC的基本信息。最终版也不远了,高兴,祝贺!

# September 26, 2008 12:44 PM

Synergist said:

In preparation for the upcoming release of Silverlight 2, we have released Silverlight 2 Release Candidate

# September 26, 2008 1:37 PM

Community Blogs said:

Ed Silverton with 3D Flickr Photo, A gaggle of Silverlight Developers blogging about RC0, and Bill Reiss

# September 26, 2008 1:56 PM

No1 Microsoft Fan said:

Updating Silverlight 2 Beta 2 Demos to RC0 In preparation for the upcoming release of Silverlight 2,

# September 26, 2008 2:07 PM

RICH INTERNET » Blog Archive » SILVERLIGHT 2 RC0 IS AVAILABLE said:

Pingback from  RICH INTERNET  &raquo; Blog Archive   &raquo; SILVERLIGHT 2 RC0 IS AVAILABLE

# September 26, 2008 5:04 PM

brauliod said:

Ahhh !!!!

DataGrid no commitingEdit on RC0 !! is there any workaround?

# September 26, 2008 5:17 PM

Silverlight 2 Release Candidate Now Available! at DaisyNow.Net said:

Pingback from  Silverlight 2 Release Candidate Now Available! at  DaisyNow.Net

# September 27, 2008 2:48 AM

ASPInsiders said:

Scott Guthrie just announced on his blog that a release candidate is now available for SL2.&#160; Important

# September 27, 2008 3:52 AM

beqiraj.net said:

Silverlight 2 Release Candidate Now Available

# September 27, 2008 6:50 AM

Ya est?? disponible Silverlight 2 Release Candidate « Thinking in .NET said:

Pingback from  Ya est?? disponible Silverlight 2 Release Candidate &laquo; Thinking in .NET

# September 27, 2008 8:54 AM

Felix Wang | Evangelizing the Next Web said:

【原文地址】 Silverlight 2 Release Candidate Now Available | Silverlight 2 正式版之候选版本发布了 【原文发表日期】 Thursday, September

# September 27, 2008 12:47 PM

MaximSaltanov's Blog said:

Silverlight 2 RC0

# September 27, 2008 4:59 PM

Mdong??s Space » Blog Archive » Silverlight 2 RC0????????? said:

Pingback from  Mdong??s Space  &raquo; Blog Archive   &raquo; Silverlight 2 RC0?????????

# September 28, 2008 12:13 AM

hufkens.net » Blog Archive » Silverlight newsflash said:

Pingback from  hufkens.net  &raquo; Blog Archive   &raquo; Silverlight newsflash

# September 28, 2008 4:14 AM

Silverlight 2 RC0 Released; Silverlight Portal is up : Die, AJAX! said:

Pingback from  Silverlight 2 RC0 Released; Silverlight Portal is up : Die, AJAX!

# September 28, 2008 4:53 PM

Silverlight Release Candidate 0 ist verf??gbar at Blog von J??rgen Ebner said:

Pingback from  Silverlight Release Candidate 0 ist verf??gbar at Blog von J??rgen Ebner

# September 29, 2008 8:46 AM

Busy week for Microsoft: Silverlight and jQuery | The Universal Desktop | ZDNet.com said:

Pingback from  Busy week for Microsoft: Silverlight and jQuery  | The Universal Desktop | ZDNet.com

# September 29, 2008 8:59 AM

Canadian Developer Connection said:

Late last week, Scott Guthrie announced the availability of the Silverlight 2 Release Candidate .&#160;

# September 29, 2008 10:16 AM

Canadian User Experience said:

Late last week, Scott Guthrie announced the availability of the Silverlight 2 Release Candidate .&#160;

# September 29, 2008 10:16 AM

Transcending the Traditional Web said:

Late last week, Scott Guthrie announced the availability of the Silverlight 2 Release Candidate .&#160;

# September 29, 2008 10:16 AM

US ISV Developer Evangelism Team said:

The first release candidate for Silverlight 2 has been posted. The release updates tool support for Visual

# September 29, 2008 2:32 PM

ISV blog-voer said:

The first release candidate for Silverlight 2 has been posted. This release updates tool support for

# September 30, 2008 2:56 AM

Websites tagged "blogpost" on Postsaver said:

Pingback from  Websites tagged "blogpost" on Postsaver

# October 2, 2008 3:18 AM

miguelalmeyda said:

A partir de hace unos días ya tenemos disponible la primera Release Candidate (RC) de Silverlight 2.0;

# October 2, 2008 4:26 PM

Meazza-mFrog said:

ThiseveningwepublishedthefirstpublicreleasecandidateofSilverlight2.

Therearestillasm...

# October 2, 2008 10:52 PM

Microsoft: Silverlight and jQuery | Enetlive.net- Rich Internet Applications Blog said:

Pingback from  Microsoft: Silverlight and jQuery | Enetlive.net- Rich Internet Applications Blog

# October 3, 2008 8:20 PM

Facing Blend » Blog Archive » Updates to Silverlight and Blend said:

Pingback from  Facing Blend  &raquo; Blog Archive   &raquo; Updates to Silverlight and Blend

# October 6, 2008 9:14 PM

Community Blogs said:

Details here . As far as I can tell from the docs, they removed a lot of things, made a bunch of things

# October 8, 2008 2:18 AM

Visual Web Developer Team Blog said:

Silverlight Tip of the Day #57 Title: How to Dynamically Load a Silverlight Control within another Silverlight

# October 8, 2008 11:06 PM

Wely said:

Rekan-rekan, Hari ini (14 October 2008), Microsoft mengumumkan bahwa Silverlight 2.0 telah resmi release

# October 14, 2008 6:39 AM

Visual Web Developer Team Blog said:

Today I am very proud to announce that Silverlight 2 has been officially released! Grab it today at silverlight.net/GetStarted

# October 14, 2008 2:06 PM

Weitere Posts zum Release at Blog von J??rgen Ebner said:

Pingback from  Weitere Posts zum Release at Blog von J??rgen Ebner

# October 14, 2008 4:21 PM

Silverlight Tips of the Day - Blog by Mike Snow said:

Today I am very proud to announce that Silverlight 2 has been officially released! Grab it today at http

# October 15, 2008 7:15 PM

The Coolest Team:) Crarus ! - Silverlight 2 Release Candidate Now Available said:

Pingback from  The Coolest Team:) Crarus ! -   Silverlight 2 Release Candidate Now Available

# October 18, 2008 5:33 AM

VaneS Blog said:

Recently I made update on my dev machine with the SP1 for Visual Studio 2008 and Silverlight-2. I made

# October 26, 2008 6:29 AM

Programming said:

This evening we published the first public release candidate of Silverlight 2. There are still a small

# October 26, 2008 9:25 AM

MS Tech News » Silverlight Tips of the Day ??? Week 8 said:

Pingback from  MS Tech News &raquo; Silverlight Tips of the Day ??? Week 8

# October 27, 2008 3:27 PM

Cesar da la Torre Blog said:

Great news!, yesterday we launched Silverlight 2.0 Release Candidate! It is quite probable that the final

# October 27, 2008 3:58 PM

Cesar da la Torre Blog said:

Great news!, yesterday we launched Silverlight 2.0 Release Candidate! It is quite probable that the final

# October 28, 2008 12:21 PM

JamLew's blog said:

A fair number of people are having issues with the ASP.NET control used to host Silverlight applications

# November 6, 2008 11:54 PM

Silverlight Tip [AG_E_NETWORK_ERROR] « The daydreaming Crocus said:

Pingback from  Silverlight Tip [AG_E_NETWORK_ERROR] &laquo; The daydreaming Crocus

# November 19, 2008 2:53 AM