Silverlight is Microsoft's cross-browser, cross platform plug-in for media experiences and rich interactive applications.
113
votes
7answers
8k views
How does the new Windows 8 Runtime (WinRT) compare to Silverlight and WPF?
I am trying to get my head round the new Windows 8 Runtime that is used to create Metro style apps. I know you can use it with XAML and it is based on .NET so C# and VB.NET can be used to write the ...
87
votes
5answers
3k views
Getting Started with Windows Phone 7
This is a community wiki list of Windows Phone 7 resources. Feel free to edit/add/etc.
When posting, please use the friendly format of
[Actual Name of resource with a link]
not
[some long URL with ...
79
votes
35answers
37k views
Which is the future of web development: HTML5 or Silverlight(or other RIA framework)? [closed]
My colleagues have a heated debate on what is the future of web development. One side is supporting HTML5 and the other is supporting Silverlight. There is no conclusion of the debate yet.
In my ...
78
votes
4answers
21k views
66
votes
28answers
4k views
What is so evil about a Flash based website?
I have the feeling that Flash-based ( or Silverlight-based) websites are generally frowned upon, except when you are creating games or multimedia-content rich applications. Why this is so?
55
votes
22answers
13k views
Silverlight vs Flex
My company develops several types of applications. A lot of our business comes from doing multimedia-type apps, typically done in Flash. However, now that side of the house is starting to migrate ...
52
votes
9answers
13k views
What MVVM framework are you using?
I am looking to write a WPF app and am trying to pick a MVVM framework to handle some of the complexity. What would you recommend and where can I find a good tutorial/getting started guide for said ...
47
votes
8answers
5k views
TextBox.TextChanged event firing twice on Windows Phone 7 emulator
I have a very simple test app just to play around with Windows Phone 7. I've just added a TextBox and a TextBlock to the standard UI template. The only custom code is the following:
public partial ...
42
votes
5answers
13k views
Cannot install silverlight 4 tools on visual studio 2010 sp1
I've installed Visual Studio 2010 (fresh install), then applied the SP1. Now I've tried to install the silverlight 4 tools, but i'm getting a strange error message :
"Visual Studio 2010 or Visual ...
41
votes
13answers
44k views
Good Silverlight-MVVM Practice Example
I've read a number of good articles about the Model-View-ViewModel pattern and my team intends to implement this pattern in the latest version of our app. I still don't quite get ALL the bits that go ...
40
votes
17answers
12k views
How do you force Firefox to not cache or re-download a Silverlight XAP file?
When working with Silverlight, I've noticed that Firefox will cache the XAP file, so if I do an update, a user may be stuck using an outdated version. Is there a way to force the browser to either ...
36
votes
12answers
19k views
Java applets vs Silverlight vs Flash (Flex)
Everybody talks about Silverlight and Flash and Flex and how cool etc...
Java applets are very similar to Silverlight and Flex, but Java applets have existed since 1995.
What is the reason we don't ...
36
votes
13answers
20k views
Should I use the Model-View-ViewModel (MVVM) pattern in Silverlight projects?
One challenge with Silverlight controls is that when properties are bound to code, they're no longer really editable in Blend. For example, if you've got a ListView that's populated from a data feed, ...
35
votes
10answers
20k views
How to automatically select all text on focus in WPF TextBox?
If I call SelectAll from a GotFocus event handler, it doesn't work with the mouse - the selection disappears as soon as mouse is released.
EDIT: People are liking Donnelle's answer, I'll try to ...
34
votes
1answer
6k views
WPF/Silverlight - Prism - Resources for beginners
Official Websites
Composite Application Guidance for WPF and Silverlight
patterns & practices: Composite WPF and Silverlight
Articles
Composite Web Apps With Prism
Podcasts
PRISM for ...
34
votes
22answers
3k views
What potential do you see in Silverlight?
Silverlight has been available since quite some time, and Silverlight 2 allows .Net programming on the front-end. I've been thinking about the apps that I can make using Silverlight, but I can't ...
32
votes
4answers
594 views
Is there a reference of default keyboard behaviours for Silverlight 4 controls?
In the official Microsoft documentation there's only one paragraph mentioning how controls behave to keyboard (at least what I could find):
...
31
votes
12answers
1k views
Designers and developers working together
The rich presentational capabilities of WPF and Silverlight mean developers like me will be working closely with graphic designers more often these days, as is the case in my next project.
Does ...
29
votes
5answers
11k views
C# difference between `==` and .Equals()
I have a condition in a silverlight application that comapres 2 strings, for some reason when I use '==' it returns false while .Equals() returns true. Here is the code :
if ...
29
votes
4answers
13k views
Best way to detect when user leaves a web page
What is the best way to detect if a user leaves a web page?
The onUnload javascript method doesn't work every time (the HTTP request takes longer than the time required to terminate the browser).
...
28
votes
2answers
583 views
Custom WP7 Silverlight control with dynamic 3D content
Ideally I need to implement a WP7 control that can be added to any XAML and which displays a dynamic, interactive 3D scene.
Currently I have this implemented via XNA in shared mode, and the UI is ...
28
votes
3answers
13k views
Binding ComboBoxes to enums… in Silverlight!
So, the web, and StackOverflow, have plenty of nice answers for how to bind a combobox to an enum property in WPF. But Silverlight is missing all of the features that make this possible :(. For ...
26
votes
2answers
587 views
Silverlight: Glyphs Width
Scenario
I want to use Glyphs on WP7 to create a line of text that is justified, i.e. touches the left and right border of the surrounding rectangle.
My solution
var glyphs = new Glyphs();
...
26
votes
3answers
2k views
MVVM Light: how to unregister Messenger
I love the MVVM Light's Messenger and its flexibility, however I'm experiencing memory leaks when I forget to explicitly unregister the recipients (in Silverlight 4).
The cause is explained here, but ...
26
votes
7answers
6k views
Why change from WPF to Silverlight 4?
I'm working on an application we made WPF instead of Silverlight as we wanted a full blown desktop application with the whole unique feeling and advantages that gives. However, with the announcement ...
26
votes
11answers
1k views
What .Net/WPF features do you miss when working in Silverlight?
I recently started working with Silverlight and immediately noticed the difference between the Silverlight BCL and the full .Net and WPF. For some of them I've found great solutions posted online by ...
26
votes
9answers
13k views
Best way to upload multiple files from a browser
I'm working on web application. There is one place where the user can upload files with the HTTP protol. There is a choice between the classic html file upload control and a java applet to upload the ...
26
votes
3answers
11k views
Passing an enum value as command parameter from xaml
I want to pass an enum value as command parameter in WPF, something like this -
<Button x:Name="uxSearchButton" Command="{Binding Path=SearchMembersCommand}"
...
25
votes
14answers
2k views
Client-side image processing
We're building a web-based application that requires heavy image processing. We'd like this processing load to be on the client as much as possible and we'd like to support as much platforms (even ...
25
votes
10answers
11k views
Silverlight, Wpf Web App (xbap) or Click Once? Pros and Cons
We are starting a new project and I'm trying to decide which of the Wpf-esque develop/deploy strategies we should go with. In our case we are looking at quite a complex business app that will be used ...
24
votes
4answers
9k views
WPF vs XBAP vs Silverlight… which suits business applications?
I'm pretty familiar with a lot of the ins and outs of full fledged WPF client applications. I know that WPF client applications supports the full .NET Framework 3.5, allows for hardware acceleration ...
24
votes
4answers
7k views
Iterating through an enumeration in Silverlight?
In .Net it is possible to iterate through an enumeration by using
System.Enum.GetNames(typeof(MyEnum))
or
System.Enum.GetValues(typeof(MyEnum))
In Silverlight 3 however, Enum.GetNames and ...
23
votes
5answers
1k views
Line of business applications: Will F# make my life easy?
I develop mainly line of business applications.No scientific operations. No complex calculations. Just tie User Interface to database. The only reason I use threading is to do some work in background ...
20
votes
10answers
2k views
Setting a custom property within a WPF/Silverlight page
This sounds like it should be simple. I have a Page declared in XAML in the normal way (i.e. with "Add new item...") and it has a custom property. I'd like to set that property in the XAML associated ...
20
votes
4answers
18k views
Silverlight: stretching to remaining space in StackPanel
I have a vertical StackPanel with two elements: a Button and a ListBox. How can I have the ListBox stretch to the remaining page height?
<StackPanel Height="Auto" Width="Auto">
<Button ...
20
votes
6answers
7k views
How do I space out the child elements of a StackPanel?
Given a StackPanel:
<StackPanel>
<TextBox Height="30">Apple</TextBox>
<TextBox Height="80">Banana</TextBox>
<TextBox Height="120">Cherry</TextBox>
...
20
votes
10answers
2k views
WPF vs Silverlight 3.0
Silverlight 3.0 beta has just been announced at Microsofts Mix Conference in Las Vegas.
Two features of the new beta are 3D-graphics and the ability to run applications outside of the browser, which ...
20
votes
8answers
32k views
Bring element forward (Z Index) in Silverlight/WPF
All the documentation and examples I'm finding online for setting Z-Index to bring an element forward in Silverlight are using a Canvas element as a container.
My items are Border elements inside of ...
19
votes
2answers
682 views
Silverlight 4.0 and WCF client proxy - how to create and how to close instances
Topic of Silverlight WCF service proxy lifecycle is not very clear to me. I have read various materials, resources, answers here, but still I don't completely understand the supposed best way to use ...
19
votes
4answers
17k views
Silverlight 3: ListBox DataTemplate HorizontalAlignment
I have a ListBox with it's ItemTemplate bound to a DataTemplate. My problem is I cannot get the elements in the template to stretch to the full width of the ListBox.
<ListBox x:Name="listPeople" ...
19
votes
7answers
33k views
Silverlight - Setting DataContext in XAML rather than in constructor?
How can I set the DataContext on my Grid in XAML, instead of in the constructor?
Here is how I do it in the constructor (LayoutRoot is the XAML Grid defined in the XAML):
this.LayoutRoot.DataContext ...
19
votes
9answers
3k views
Learn Silverlight or WPF first?
It seems that Silverlight/WPF are the long term future for user interface development with .NET. This is great because as I can see the advantage of reusing XAML skills on both the client and web ...
18
votes
4answers
806 views
4 points and Ellipse
I have 4 points.. i can draw a polygon usign this code
var p = new Polygon();
p.Points.Add(new Point(0, 0));
p.Points.Add(new Point(70, 0));
p.Points.Add(new Point(90, 100));
p.Points.Add(new ...
18
votes
6answers
1k views
Are there any “undocumented features” in Silverlight?
I was wondering if there are any features in Silverlight 2 or 3 that aren't documented or are hidden very deep in the framework? Stuff that can be very helpful in some cases, but can be a pain to ...
18
votes
4answers
12k views
Access codebehind variable in XAML
How can i access public variable which in Sample.xaml.cs file like asp.net <%=VariableName%> ?
Thanks.
18
votes
4answers
12k views
How to get the Silverlight XAP copied to the clientbin on build
I am just getting started with Silverlight and have recently added a Silverlight project to an established solution. In this particular scenario my solution included an existing ASP.NET web site (not ...
17
votes
2answers
1k views
Silverlight 4 / .NET 4 Debugging resource strings
I recently encountered a strange thing. On some of my company's servers when an exception message is printed out (yes, bad, I know. It's for debugging), the actual message isn't displayed. Instead it ...
17
votes
1answer
400 views
Silverlight - Resharper and VS designer can't deal with StaticResource extension
Basically, neither Visual Studio designer, nor Resharper seem to deal with the StaticResource markup extension when I use it "normally" - without the brackets.
<StaticResource ...
17
votes
3answers
965 views
Lightswitch Evaluation
Has somebody already evaluated the new MS Silverlight RAD tool "Lightswitch"? Is it also suitable for developing complex applications? Can I use it without Silverlight knowledge? Is it so flexible, ...
17
votes
3answers
2k views
What are MEF best practices?
What are some best practices for using MEF in your code? Are there any pitfalls to take into account when starting your extensible application? Did you run into anything you should have known earlier?
...