Questions tagged [silverlight-5.0]

Silverlight is Microsoft's cross-browser, cross platform plug-in for media experiences and rich interactive applications. The latest Silverlight version available is Silverlight 5.

Microsoft Silverlight is a powerful tool for creating and delivering rich Internet applications and media experiences on the Web. Silverlight 5 builds on the foundation of Silverlight 4 for building business applications and premium media experiences. Among other capabilities, the Silverlight 5 highlights dramatic video quality and performance improvements, and features that improve developer productivity.

Download Silverlight 5 from http://www.silverlight.net/downloads

Top Release Candidate Features

Binding and Related

  • ICustomTypeProvider
  • Custom Markup Extensions
  • Ancestor RelativeSource Binding
  • Implicit Data Templates
  • Binding in Style Setters
  • DataContextChanged Event (new since beta)
  • PropertyChanged now an UpdateSourceTrigger option (new since beta)

Graphics

  • XNA 3D API
  • Improved Graphics Stack
  • 3D Render targets (new since beta)
  • XNA 3D built-in effects (new since beta)
  • 3D surface composition settings (new since beta)
  • 3D multi-sample anti-aliasing (new since beta)

Media

  • Low-Latency Sound using XNA SoundEffect and SoundEffectInstance
  • Hardware decoding of H.264 media
  • Variable Speed Playback and Trick-play (new since beta)
  • Remote Control and Media Command (Keys) Support (new since beta)

Text

  • Text Tracking and Leading
  • Linked and Multi-column Text
  • OpenType Support (new since beta)
  • Pixel Snapped Text and TextOptions (new since beta)

Operating System Integration

  • P/Invoke (new since beta)
  • Multiple Windows
  • Unrestricted File System Access in Full Trust
  • Full Trust in-browser
  • Default Filename in SaveFileDialog and OpenFileDialog (new since beta)
  • 64 bit browser support (new since beta)
  • Power awareness for media apps (keep the PC alive while a movie is playing, for example) (new since beta)

Productivity and Performance

  • Network Latency Improvements
  • Databinding Debugging
  • Parser Performance Improvements
  • Multi-core JIT for improved start-up time

Controls

  • Double and n-click support
  • PivotViewer (new since beta)
  • ComboBox type-ahead/incremental search

Other

  • In-browser HTML
  • PostScript Vector Printing (new since beta)
  • Tasks from TPL (new since beta)
  • C# Covariance and Contravariance

More on this list at Pete's Blog.

See also:

1417 questions
4
votes
2 answers

PDF and Silverlight, can they work together?

I have a project where I create sample documents. Code here : private void btnExcel_Click(object sender, System.Windows.RoutedEventArgs e) { if (AutomationFactory.IsAvailable) { dynamic excel =…
Nathan
  • 1,520
  • 1
  • 12
  • 21
4
votes
1 answer

Silverlight 5 + AutoCompleteBox = Bug

Just installed SL5 and the toolkit, that were released few days ago. The bug happens when you set the Text property of the AutoCompleteBox to string.Empty. It causes the AutoCompleteBox to be in a buggy state. To reproduce the bug: add an…
Yaron Levi
  • 12,535
  • 16
  • 69
  • 118
4
votes
1 answer

Could not load file or assembly 'System.Windows.Controls' in silverlight 5 using prism4

I'm creating an application silverlight 5 using prism 4 and when I'm running the bootstrapper using UnityBootstrapper then I have the next error: Could not load file or assembly 'System.Windows.Controls, Version=2.0.5.0, Culture=neutral,…
4
votes
1 answer

What makes Edit-and-Continue difficult/impossible for Silverlight? What's the next-best thing?

NOTE: related question from ~2 years ago just confirmed SL3 couldn't do it. Since Silverlight 5 will (AFAICT) still not have edit-and-continue support (even for out-of-browser, again AFAICT), I wanted to ask if anyone knew what made it such a…
4
votes
2 answers

Using Async CTP Await with events?

Relevant to Silverlight 5 / Async CTP I want to create an asynchronous function that initiates a layout update and then Awaits for the layout update to complete. Something like: Private Async Function UpdateLayoutRoot() As Task …
4
votes
2 answers

Issue with Silverlight 5 beta and Silverlight April 2010 Toolkit

There seems to be an issue with SL 5 beta and the SL April 2010 Toolkit. After converting a Silverlight Solution (which compiled well under SL 4!) to SL5 I get the following error: The tag 'TreeViewDragDropTarget' does not exist in XML namespace…
Thomas Mutzl
  • 715
  • 7
  • 21
4
votes
1 answer

Silverlight 5 - 3D - RenderModeReason - TemporarilyUnavailable

I'm trying to create a simple Silverlight 3d application... I have a good enough PC, but when I run the Silverlight application I get this: RenderModeReason - TemporarilyUnavailable... WTF is that? o_O PS: The sample 3D applications where made by…
obenjiro
  • 3,665
  • 7
  • 44
  • 82
4
votes
1 answer

How to use Data Annotations on the ViewModel?

I'm using RIA Services with LinqToEntitiesDomainService<> and Silverlight 5 Beta to generate the DomainContext code on the client side. I have Data Annotations in my Models/Entities to do basic validations, and when using the Models directly,…
HiredMind
  • 1,827
  • 17
  • 27
4
votes
2 answers

How to make 3D models for Silverlight 5?

I'am a .NET web developer, I really do not know anything about 3D yet. In Silverlight 5 3D API you draw stuff on the screen by code, no XAML for the 3D Objects/Models, I am wondering how 3D developers can make that cool sophisticated animated 3D…
Moutaz Shams
  • 301
  • 3
  • 9
4
votes
1 answer

Silverlight 5: Set ConstructorArgument on a IMarkupExtension class

I would like to have a MarkupExtension that can be initiated with just one value, much like Binding: instead of In WPF this is done with the ConstructorArgumentAttribute, but…
Shimmy Weitzhandler
  • 101,809
  • 122
  • 424
  • 632
4
votes
1 answer

Silverlight 5 trust application issue

In silverlight5 beta, it supports trust application which allows loading local files. I tried and it works fantastic in both OOB and in browser mode. One question is that, when put my cap on the server, it works fine in OOB mode but doesn't work in…
Howard
  • 3,638
  • 4
  • 32
  • 39
4
votes
2 answers

ListBox Item returns conflicting property to children

So I'm stumped at the moment, and hoping another pair of eyes can catch what I'm missing or at least point me in a direction to dig further. Sorry in advance, I don't often ask quick and easy questions. Scenario: Huge silverlight solution with some…
Chris W.
  • 22,835
  • 3
  • 60
  • 94
4
votes
1 answer

DataContractJsonSerializer and JsonConvert give different result

I have a method like this. using (MemoryStream memoryStream = new MemoryStream()) { DataContractJsonSerializer dataContractSerializer = new DataContractJsonSerializer(typeof(Message), this.knowTypes); …
Blast
  • 955
  • 1
  • 17
  • 40
4
votes
2 answers

Automate testing of Silverlight application : MS Test Manager vs Selenium

We are trying to start implementing automated tests for our Silverlight 5 application on VS2013. Our first idea was to use Microsoft Test Manager, but when we looked into the Coded UI plugin for Silverlight, the reviews were pretty bad (2 stars out…
4
votes
4 answers

performance at arcgis silverlight api

I am using GraphicsLayer for road symbology with SimpleLineSymbol. my code is same with below code: for (int i = 0; i < 200000; i++) { myGraphicsLayer.Graphics[i].Symbol = mySimpleLineSymbol; } this code run fast but draw…
Mohammad
  • 528
  • 4
  • 21