Questions tagged [silverlight-4.0]

Silverlight is Microsoft's cross-browser, cross platform plug-in for media experiences and rich interactive applications. The version 4 was released in April 2010.

Microsoft Silverlight is an application framework for writing and running rich Internet applications with emphasis on multimedia, animations, and graphics, with features and purposes similar to those of Adobe Flash. The run-time environment for Silverlight is available as a plug-in for most web browsers. While early versions of Silverlight focused on streaming media, current versions support multimedia, graphics and animation, and give developers support for CLI languages and development tools.

It is the standard for writing Windows Phone 7 applications and is being promoted for Line of Business (LoB) applications.

Platforms Supported

  • Silverlight 4 for Window (Chrome, Firefox, IE 6-9) & Mac (Firefox, Safari)
  • Windows Phone 7, Windows 8

Links

Development & Design Tools

See also:

5179 questions
1
vote
2 answers

How to change height of Silverlight app in ASP.NET panel?

How can I dynamically change height of Silverlight application embedded in ASP.NET panel?' ASP.NET Panel markup
softwarematter
  • 28,015
  • 64
  • 169
  • 263
1
vote
0 answers

long delay between FiddlerBeginRequest and ServerGotRequest

Check the fiddler track message, we found long delay between FiddlerBeginRequest and ServerGotRequest. I was confused, cause the webserver and client is in local network. It seems that the delay is not caused by slow network speed. Any suggestion is…
SarahCla
  • 11
  • 3
1
vote
1 answer

difference between unit testing a web project and a silverlight project (How to unit test a silverlight project)

I know unit testing but haven't done unit testing for silverlight project yet. Can anyone let me know how to unit test a silverlight project. Is the approach different than unit testing a asp.net project? Any resource/tutorial regarding this would…
Rahul
  • 76,197
  • 13
  • 71
  • 125
1
vote
1 answer

Silverlight 4, with Bing Maps, Ellipse size

I have problem displaying big Ellipses in a MapLayer. The Ellipse is cut off. In the XAML, I just add a Map with a Layer and an ellipse. In the code behind I locate the ellipse in the map. The problem appears when I pan the map to the north. …
1
vote
0 answers

Silverlight 4 WCF The server did not provide a meaningful reply

I'm getting the notorious, "The server did not provide a meaningful reply; this might be caused by a contract mismatch, a premature session shutdown or an internal server error" in my project. It's a WCF PollingDuplex Service, consumed by a…
wakurth
  • 1,644
  • 1
  • 23
  • 39
1
vote
0 answers

Silverlight 4 ValidationSummary not showing error of non-visible control

the screen has a tabControl, so many controls are hidden/now-showing until you open that tabItem. when performing validation, some of these non-visible controls are invalid, but the ValidationSummary is not showing them, not until i open a tabItem…
Kelmen
  • 1,053
  • 1
  • 11
  • 24
1
vote
1 answer

How to Automate or Move (Silverlight) xap file to 14 hive ClientBin

I am using silverlight project in sharepoint 2010.I have an requirement of using WSP builder project only for building the soultion and I have configured the layout structure depends on 14 hive. In the dev machine I have configured post build event…
Ramalingam
  • 255
  • 3
  • 13
1
vote
0 answers

Localization in Silverlight, need multiple binding in XAML

We're trying to do some localization in our Silverlight app. Normal localization is no problem: we write the bindings in XAML and our textblock items show the correct text. For items in datatemplates or for enums, we are experiencing some issues. We…
Terry
  • 5,132
  • 4
  • 33
  • 66
1
vote
1 answer

Dragging item from DataGridDragDropTarget to Label

I'm using the ListBoxDragDropTarget from the Silverlight Toolkit (April 2010) with SL 4. I want to drag items from the list box onto a Label and handle the drop event there. However it seems a bit complicated. The regular Drop event of the Label…
aKzenT
  • 7,775
  • 2
  • 36
  • 65
1
vote
2 answers

Connect Silverlight Line Series Points Based On Dependent Value

Here's my current chart: Is it possible to get the green and red series to connect points based on the dependent value (TVD) and not the independent value (Pressure)? I'd like to connect the points based on the increase in TVD. My series are bound…
John
  • 485
  • 3
  • 5
  • 16
1
vote
0 answers

How to read registry sub keys in Silverlight 4 OOB

I am creating an OOB Silverlight application where I need to read the sub keys from the registry. Although I have tried writing the code, it is not working. How can I read the subkeys from registry in SL4. Below is the screenshot of the code. if…
Jaikishan
  • 11
  • 1
1
vote
1 answer

Passing parameters from aspx page to xmal page

i am developing a site using asp.net but for displaying graphs we are using silverlight technology. i am able to navigate to a silverlight page using navigateurl of link button and i am able to attach query string for that, but how can i retrieve…
Ramakrishna
  • 4,928
  • 3
  • 20
  • 24
1
vote
1 answer

Error creating silverlight 4.0 project for windows phone

Trying to create a new project in VS2010 (on Windows 7 64-bit) of type Windows Phone Application, I get the error: You need to install the Silverlight 4.0 SDK before creating a Silverlight for Windows Phone project. Download the Silverlight 4.0…
jm.
  • 23,422
  • 22
  • 79
  • 93
1
vote
2 answers

Binding a UserControl to a custom BusyIndicator control

I have a requirement to focus on a specific textbox when a new view is loaded. The solution was to add this line of code to the OnLoaded event for the view: Dispatcher.BeginInvoke(() => { NameTextBox.Focus(); }); So this worked for one view, but…
Matthew Steven Monkan
  • 8,170
  • 4
  • 53
  • 71
1
vote
1 answer

Using Moq, how can I detect if a button click fired off an event in my viewmodel?

The commands:Click.Command={Binding OkCommand} in my view (PopupView.xaml)
1 2 3
99
100