Windows Presentation Foundation (or WPF) is a computer-software graphical subsystem for rendering user interfaces in Windows-based applications.
234
votes
23answers
82k views
MVVM: Tutorial from start to finish? [closed]
I'm a C#/Windows Forms programmer with more than 5 years experience. I've been investigating WPF using the MVVM (Model-View-ViewModel) design pattern. I have searched the Internet for tutorials. I ...
120
votes
0answers
22k views
When is Windows Forms the correct choice vs WPF? [closed]
Possible Duplicate:
WPF versus Windows Forms
I presume that WPF is intended to eventually replace Windows Forms altogether, but for now, they are both shipping.
My question is, when is one ...
119
votes
25answers
12k views
Hidden features of WPF and XAML?
Here is a large number of hidden features discussed for variety of languages. Now I am curious about some hidden features of XAML and WPF?
One I have found is the header click event of a ListView
...
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 ...
111
votes
13answers
20k views
What framework for MVVM should I use?
I am developing an application with the MVVM model, but I have reached a point where I need to choose which framework to use.
Among the possible options are:
MVVM Toolkit
MVVM Foundation
WPF ...
110
votes
14answers
21k views
INotifyPropertyChanged vs. DependencyProperty in ViewModel
When implementing the ViewModel in a Model-View-ViewModel architecture WPF application there seem to be two major choices how to make it databindable. I have seen implementations that use ...
106
votes
23answers
37k views
Interview questions: WPF Developer [closed]
What should every WPF developer know?
Entry Level
Strong .NET 2.0 Background & willing to learn!
Explain dependency properties?
What's a style?
What's a template?
Binding
Differences between ...
98
votes
18answers
37k views
Handling Dialogs in WPF with MVVM
In the MVVM pattern for WPF, handling dialogs is one of the more complex operations. As your view model does not know anything about the view, dialog communication can be interesting. I can expose ...
95
votes
7answers
71k views
How do I use WPF bindings with RelativeSource?
How do I use RelativeSource with WPF bindings and what are the different use-cases?
89
votes
6answers
24k views
WPF: How to bind RadioButtons to an enum?
I've got an enum like this:
public enum MyLovelyEnum
{
FirstSelection,
TheOtherSelection,
YetAnotherOne
};
I got a property in my DataContext:
public MyLovelyEnum VeryLovelyEnum { get; set; ...
89
votes
19answers
16k views
What is the correct way to create a single instance application?
Using C# and WPF under .net (rather than WindowsForms or console), what is the correct way to create an application that can only be run as a single instance? I know it has something to do with some ...
86
votes
23answers
24k views
Qt versus WPF/.NET [closed]
My company is trying to make the decision between using Qt/C++ for our GUI framework or migrating to .NET and using WPF. We have up to this point been using MFC. It seems that .NET/WPF is ...
83
votes
3answers
27k views
What's the difference between StaticResource and DynamicResource in WPF?
When using resources such as brushes, templates and styles in WPF, they can be specified either as StaticResources
<Rectangle Fill="{StaticResource MyBrush}" />
or as a DynamicResource
...
82
votes
0answers
35k views
WPF versus Windows Forms [closed]
Possible Duplicate:
When creating a new GUI, is WPF the preferred choice over Windows Forms?
What are the advantages and disadvantages between using WPF (Windows Presentation Foundation) ...
80
votes
7answers
64k views
WPF image resources
I come from a mostly web and a little bit Windows Forms background. For a new project, we will be using WPF. The WPF application will need 10 - 20 small icons and images for illustrative purposes. I ...
78
votes
4answers
21k views
78
votes
7answers
11k views
In WPF, what are the differences between the x:Name and Name attributes?
The title says it all. Sometimes it seems that the Name and x:Name attributes are interchangeable.
So, what are the definitive differences between them, and when is it preferable to use one over the ...
76
votes
5answers
42k views
What are the various “Build action” settings in VS.NET project properties and what do they do?
For the most part you just take whatever Visual Studio sets it for you as a default.. I'm referring to the BuildAction Property for each file selected in your solution explorer. There are a number of ...
74
votes
14answers
115k views
Setting WPF image source in code
I'm trying to set a WPF image's source in code. The image is embedded as a resource in the project. By looking at examples I've come up with the below code. For some reason it doesn't work - the image ...
73
votes
12answers
17k views
WPF Blurry fonts problem - Solutions
Problem is described and demonstrated on the following links:
Paul Stovell WPF: Blurry Text Rendering
www.gamedev.net forum
Microsoft Connect: WPF text renderer produces badly blurred text on ...
72
votes
15answers
32k views
WPF MVVM Newbie - how should the ViewModel close the form?
I'm trying to learn WPF and the MVVM problem, but have hit a snag.
This question is similar but not quite the same as this one (handling-dialogs-in-wpf-with-mvvm)...
I have a "Login" form ...
67
votes
16answers
41k views
66
votes
4answers
28k views
How to get controls in WPF to fill available space?
Didn't get a reply to this on the MSDN WPF forum, so I thought I'd try here.
Some WPF controls - like the button - seem to happily consume all the availible space in its' container if you don't ...
65
votes
9answers
22k views
What WPF books would you recommend? [closed]
Well, i've got a nice WPF book its called Sams Windows Presentation Foundation Unleashed.
I really like to read and learn with it. Are there any other WPF books you could recommend?
57
votes
11answers
50k views
WPF ways to find controls
I am trying to collect all possible ways to find controls in WPF. To find control by name, by type, etc.
56
votes
3answers
46k views
WPF XAML: how to get StackPanel's children to fill maximum space downward?
I simply want flowing text on the left, and a help box on the right.
The help box should extend all the way to the bottom.
If you take out the outer StackPanel below it works great.
But for reasons ...
56
votes
10answers
40k views
Databinding an enum property to a ComboBox in WPF
As an example take the following code:
public enum ExampleEnum { FooBar, BarFoo }
public class ExampleClass : INotifyPropertyChanged
{
private ExampleEnum example;
public ExampleEnum ...
55
votes
7answers
16k views
Good examples of MVVM Template
I am currently working with the Microsoft MVVM template and find the lack of detailed examples frustrating. The included ContactBook example shows very little Command handling and the only other ...
55
votes
15answers
60k views
Good examples of WPF applications
I just starting to learn Windows Presentation Foundation (WPF) and I am interested in seeing some great examples of WPF applications. These can either be applications written entirely for showcasing ...
53
votes
9answers
14k 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 ...
52
votes
11answers
1k views
Whats a more memory efficient way of appending to TextBox.Text during a loop?
Short Question
I have a loop that runs 180,000 times. At the end of each iteration it is supposed to append the results to a TextBox, which is updated real-time.
Using MyTextBox.Text += someValue is ...
48
votes
2answers
999 views
How to make Resharper resolve path for CustomBinding MarkupExtension
I want to create some extended Binding-Markup-Extension, which behaves just like a normal WPF-Binding but does some things more (use different defaults, maybe add some behavior, etc.).
Code looks like ...
48
votes
11answers
9k views
What applications could I study to understand (Data)Model-View-ViewModel? [closed]
I understand the basics of the Model-View-ViewModel pattern or as Dan Crevier calls it the DataModel-View-ViewModel pattern and I understand that it is a good approach to design WPF based ...
48
votes
2answers
20k views
WPF: ListBox vs. ListView - how to choose for data binding
I'm considering either a ListBox or a ListView for a WPF application. It seems either supports data binding and item templates. My application has a simple list of items that I intend to be able to ...
47
votes
7answers
5k views
Is there a WPF Cheat Sheet available?
I'm looking for a WPF cheat sheet that has the WPF markup extensions for binding, resources, and other common things in WPF.But so far I've had trouble finding it.
Anyone know where I could find one?
...
47
votes
34answers
10k views
When creating a new GUI, is WPF the preferred choice over Windows Forms? [closed]
Most restrictions and tricks with windows forms are common to most programmers. But since .NET 3.0 there is also WPF available, the Windows Presentation Foundation. It is said that you can make "sexy ...
44
votes
6answers
2k views
MVVM Madness: Commands
I like MVVM. I don't love it, but like it. Most of it makes sense. But, I keep reading articles that encourage you to write a lot of code so that you can write XAML and don't have to write any code in ...
44
votes
5answers
21k views
How to create trapezoid tabs in WPF tab control
How to create trapezoid tabs in WPF tab control? I'd like to create non rectangular tabs that look like tabs in Google Chrome or like tabs in code editor of VS 2008.
Can it be done with WPF styles or ...
44
votes
2answers
34k views
Change WPF DataTemplate for ListBox item if selected
I need to change the DataTemplate for items in a ListBox depending on whether the item is selected or not (displaying different/more information when selected).
I don't get a GotFocus/LostFocus event ...
43
votes
10answers
9k views
My images are blurry! Why isn't WPF's SnapsToDevicePixels working?
I'm using some Images in my WPF applcation.
XAML:
<Image Name="ImageOrderedList"
Source="images/OrderedList.png"
ToolTip="Ordered List"
Margin="0,0,5,5"
Width="20"
...
42
votes
4answers
14k views
Globally catch exceptions in a WPF application?
We are having a WPF application where parts of it may throw exceptions at runtime. I'd like to globally catch any unhandled exception and log them, but otherwise continue program execution as if ...
40
votes
12answers
34k views
WPF - Pan & Zoom Image
I want to create a simple image viewer in WPF that will enable the user to:
Pan (by mouse dragging the image).
Zoom (with a slider).
Show overlays (rectangle selection for example).
Show original ...
40
votes
18answers
16k views
Recommendation for high performance WPF Chart [closed]
We're working on a WPF-based desktop application that charts financial markets information (candlestick charts, overlayed indicator curves, volume, etc). The charts are displayed in real-time with ...
40
votes
2answers
27k views
WPF Resource Dictionary in a separate assembly
I have resource dictionary files (MenuTemplate.xaml, ButtonTemplate.xaml, etc) that I want to use in multiple separate applications. I could add them to the applications' assemblies, but it's better ...
40
votes
7answers
17k views
How to apply multiple styles in WPF
In WPF, how would I apply multiple styles to a FrameworkElement? For instance, I have a control which already has a style. I also have a separate style which I would like to add to it without ...
39
votes
5answers
18k views
WPF TemplateBinding vs RelativeSource TemplatedParent
What is the difference between these 2 bindings:
<ControlTemplate TargetType="{x:Type Button}">
<Border BorderBrush="{TemplateBinding Property=Background}">
<ContentPresenter ...
39
votes
3answers
13k views
How to bind inverse boolean properties in WPF?
I am open to suggestions with the title. It really is pretty bad.
What I have is an object that has an IsReadOnly property. If this property is true, I would like to set the IsEnabled property on a ...
37
votes
7answers
22k views
How to get Color from Hex color code using .NET?
How can I get Color from a Hex color code(e.g. #FFDFD991)?
I am reading a file and getting Hex color code, I need to create the corresponding System.Windows.Media.Color instance for the Hex color ...
37
votes
11answers
2k views
What did you find hardest to understand when learning WPF
What bit of WPF did you
find hardest to understand
or misunderstood for longest
and how did you understand it in the end (please provide links etc).
(I am asking this to guide my learning of ...
37
votes
2answers
7k views
ItemsControl with horizontal orientation
Do you know any controls inherited from the ItemsControl that have horizontal orientation of items?