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
5
votes
2 answers

Code Analysis breaks due to RIA?

MSBUILD : error : CA0055 : Could not unify the platforms (mscorlib, Version=2.0.5.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, mscorlib, Version=5.0.5.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e) The only external libs I'm loading…
rozon
  • 2,518
  • 4
  • 23
  • 37
5
votes
2 answers

Export Images to PDF

I have a project that has to export images to PDF. Images and text alike are needed to be exported into pdf. is there a way to do this by using silverPDF.dll and PdfReader? Code here. private void btnOutlook_Click(object sender,…
Nathan
  • 1,520
  • 1
  • 12
  • 21
5
votes
1 answer

MVVM light messaging broken after SL5 update?

I Just upgraded my SL4 application to SL5. I downloaded the MVVM light toolkit source for SL 5 and build it: http://mvvmlight.codeplex.com/SourceControl/changeset/changes/17256019ad97 Initially everything works fine, but the GalaSoft messaging is…
5
votes
1 answer

Silverlight and code coverage

Is there any way to get code coverage numbers from Silverlight? Up until now it has been impossible. I was hoping with the new Visual Studio 2010 Service Pack or Silverlight 5 coming out that there might be a way.
Xander
  • 9,069
  • 14
  • 70
  • 129
5
votes
1 answer

Silverlight 4/5 OOB Window Menu

I was looking at Silverlight for building a "cross platform" desktop application (Windows and Mac anyway), but there is one show stopper that I cannot find a workaround for. On the Mac OS, in Adobe AIR, the AIR apps have a way to modify the main…
5
votes
2 answers

Silverlight 5 Opening Socket AccessDenied

I have a Silverlight 5 application trying establish a socket connection to a server as follows: var targetEndpoint = new DnsEndPoint("subdomain.maindomain.com", 443); var clientSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream,…
GPicazo
  • 6,516
  • 3
  • 21
  • 24
5
votes
1 answer

How to convert a Portable Class Library (PCL) to a normal class library?

I have a Portable Class Library (PCL) that needs conversion to a normal class library (targeted only at .NET 4.5). I've tried editing the .csproj file, with no success. I'm wondering how to do this?
Contango
  • 76,540
  • 58
  • 260
  • 305
5
votes
1 answer

Silverlight 5 and VertexBuffer.GetData()

I am trying to achieve 3d model collision in silverlight 5. To do that I am creating a BoundingBox (just like in XNA4.0): I saw the same question VertexBuffer.GetData() and Silverlight 5 in this link but no answers found. public BoundingBox…
Renien
  • 551
  • 4
  • 19
5
votes
1 answer

Silverlight POCO returned by RIA services

I am using a Silverlight 5 Business Application using RIA services to return a POCO class from the service side to populate a hierarchical menu. The original problem I had with the POCO class was that the SubMenuItems property was not getting…
Phil Murray
  • 6,396
  • 9
  • 45
  • 95
5
votes
3 answers

Cannot find all types required by the async modifier

I get the following two compiler errors (Resharper 7.0.1 reports no errors): Predefined type 'System.Runtime.CompilerServices.IAsyncStateMachine' is not defined or imported Cannot find all types required by the 'async' modifier. Are you…
5
votes
1 answer

Cannot import wsdl:portType, wsdl:binding, wsdl:port errors with WCF in Silverlight Application

I have a Silverlight application that is communicating with ADO.Net data entities on the server side through a WCF Service. Actually, I am using multiple WCF services to communicate with three different data ADO.Net data entities. I had originally…
Christian
  • 1,685
  • 9
  • 28
  • 48
5
votes
1 answer

Excessive XAML markup size in Silverlight RichTextBox

I have a very simple RichTextBox control in a silverlight 5 application. As the data is changed, i capture it in a local variable as so: …
tsiorn
  • 2,236
  • 1
  • 22
  • 26
4
votes
1 answer

Silverlight - First time going to Full Screen opens in background (FF, Chrome, not IE)

I have not found an answer to this, not here or when I have googled for it. The case is that we have a silverlight with a video-stream. If we have enabled fullscreen with the code : Application.Current.Host.Content.IsFullScreen first time the…
Nitro
  • 624
  • 8
  • 21
4
votes
1 answer

Change style of TextBlock for TargetNullValue

I want to change the Style of a TextBlock if the value of the bound property is null. I have specified a value for TargetNullValue of the TextBlock to be displayed, but i want to display it with an alternativ style. How can i do it. My current…
Jehof
  • 34,674
  • 10
  • 123
  • 155
4
votes
3 answers

Serial Communication with Silverlight 5 (COM port)

I'm working on an ASP.NET website in which I'll need to access an usb device from the client side. I've seen that Silverlight 5, through the use of P/Invoke, allows us to access dlls on the client machine. I plan to add a silverlight control in one…
Andy M
  • 5,945
  • 7
  • 51
  • 96