Windows Presentation Foundation (WPF, previously known as “Avalon”) is part of the Microsoft .NET framework used to create rich client user experiences for Windows applications. It features a diverse set of controls, layout options, 2D & 3D graphics, media & text handling and enables data ...

learn more… | top users | synonyms

69
votes
12answers
63k 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.
11
votes
5answers
3k views

Control template for existing controls in WPF

How to get existing control's controltemplate in WPF in XAML format(visual tree)? This is to help to create new controltemplate with the help of existing template.
101
votes
19answers
20k 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 ...
104
votes
18answers
41k 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 ...
82
votes
0answers
37k 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) ...
51
votes
10answers
52k views

Load a WPF BitmapImage from a System.Drawing.Bitmap

I have an instance of a System.Drawing.Bitmap and would like to make it available to my WPF app in the form of a System.Windows.Media.Imaging.BitmapImage. What would be the best approach for this?
20
votes
2answers
5k views

Virtualizing an ItemsControl?

I have an ItemsControl containing a list of data that I would like to virtualize, however VirtualizingStackPanel.IsVirtualizing="True" does not seem to work with an ItemsControl. Is this really the ...
102
votes
6answers
27k views

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; ...
23
votes
7answers
21k views

Find all controls in WPF Window by type

I'm looking for a way to find all controls on Window by their type, for example: find all TextBoxes, find all controls implementing specific interface etc. Thanks
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 ...
126
votes
14answers
24k 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 ...
22
votes
13answers
19k views

Watermark TextBox in WPF

How can I put some text into a textbox which is removed automatically when user types something in it? (In WPF)
29
votes
4answers
61k views

Image UriSource and Data Binding

I'm trying to bind a list of custom objects to a WPF Image like this: <Image> <Image.Source> <BitmapImage UriSource="{Binding Path=ImagePath}" /> ...
115
votes
7answers
84k views

How do I use WPF bindings with RelativeSource?

How do I use RelativeSource with WPF bindings and what are the different use-cases?
87
votes
4answers
24k views

WPF vs Silverlight [closed]

Possible Duplicate: What is the difference between WPF and Silverlight application? What are the exact differences between WPF and Silverlight?
18
votes
3answers
4k views

Good or bad practise for Dialogs in wpf with MVVM?

i lately had the problem of creating add and edit dialogs for my wpf app. all i want to do in my code was something like this. (I mostly use viewmodel first approach with mvvm) ViewModel which calls ...
127
votes
14answers
23k 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 ...
94
votes
7answers
14k 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 ...
32
votes
5answers
18k views

Is it possible to set code behind a resource dictionary in WPF for event handling?

Is it possible to set code behind a resource dictionary in WPF. For example in a usercontrol for a button you declare it in XAML. The event handling code for the button click is done in the code file ...
25
votes
4answers
15k views

How can I programmatically generate keypress events in C#?

How can I programmatically create an event that would simulate a key being pressed on the keyboard?
77
votes
12answers
19k 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 ...
74
votes
16answers
36k 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 ...
93
votes
14answers
136k 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 ...
102
votes
8answers
80k 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 ...
100
votes
3answers
32k 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 ...
63
votes
10answers
45k 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 ...
33
votes
8answers
29k views

How do I get an animated gif to work in WPF?

What control type should I use - Image, MediaElement, etc??
16
votes
4answers
11k views

Using global keyboard hook (WH_KEYBOARD_LL) in WPF / C#

I stitched together from code I found in internet myself WH_KEYBOARD_LL helper class: Problem this had is now solved, thanks to Mattias S, following YourUtils.cs is fixed. Put the following code to ...
25
votes
4answers
19k views

How to populate a WPF grid based on a 2-dimensional array

I have a 2-dimensional array of objects and I basically want to databind each one to a cell in a WPF grid. Currently I have this working but I am doing most of it procedurally. I create the correct ...
22
votes
4answers
5k views

Pushing read-only GUI properties back into ViewModel

I want to write a ViewModel that always knows the current state of some read-only dependency properties from the View. Specifically, my GUI contains a FlowDocumentPageViewer, which displays one page ...
18
votes
3answers
971 views

Create guitar chords editor in WPF (from RichTextBox?)

Main purpose of application I'm working on in WPF is to allow editing and consequently printing of songs lyrics with guitar chords over it. You have probably seen chords even if you don't play any ...
16
votes
2answers
8k views

How to preserve control state within tab items in a TabControl

I am a newcomer to WPF, attempting to build a project that follows the recommendations of Josh Smith's excellent article describing The Model-View-ViewModel Design Pattern. Using Josh's sample code ...
37
votes
6answers
19k views

Bind to a method in WPF?

How do you bind to an objects method in this scenario in WPF? public class RootObject { public string Name { get; } public ObservableCollection<ChildObject> GetChildren() {...} } ...
15
votes
8answers
16k views

How can I register a global hot key to say CTRL+SHIFT+(LETTER) using WPF and .NET 3.5?

I'm building an application in C# using WPF. How can I bind to some keys? Also, how can I bind to the Windows key?
10
votes
4answers
1k views

Custom MVVM implementation Vs. PRISM

This question is inspired from this closed question - What does Prism actually offer the developer? And is it worth it? I have already implemented my own custom MVVM implementations in enterprise ...
15
votes
6answers
5k views

Merging dlls into a single .exe with wpf

I'm currently working on a project where we have a lot of dependencies. I would like to compile all the referenced dll's into the .exe much like you would do with embedded resources. I have tried ...
4
votes
4answers
15k views

WPF vs. Windows Forms [closed]

Duplicate: WPF vs WinForms or Rich UI vs Stable Applications? What do you think about the future of the Windows Forms platform? When is Winforms the correct choice vs. WPF? WPF versus ...
0
votes
2answers
154 views

Is rewriting a product in WPF a good idea if your client base still uses XP?

On this site alone there are numerous examples of problems with WPF associated with XP. Eg: Font problem in windows xp some troubles with WPF and Windows XP WPF Combobox rendering on XP WPF Child ...
35
votes
8answers
16k views

Detecting WPF Validation Errors

In WPF you can setup validation based on errors thrown in your Data Layer during Data Binding using the ExceptionValidationRule or DataErrorValidationRule. Suppose you had a bunch of controls set up ...
44
votes
5answers
14k views

WPF global exception handler

sometimes, under not reproducible circumstances, my WPF application crashes without any message. The application simply close instantly. Where is the best place to implement the global Try/Catch ...
26
votes
6answers
39k views

How do I bind a WPF DataGrid to a variable number of columns?

My WPF application generates sets of data which may have a different number of columns each time. Included in the output is a description of each column that will be used to apply formatting. A ...
14
votes
8answers
13k views

Set focus on textbox in WPF from view model (C#) & wPF

I have a TextBox and a Button in my view. Now I am checking a condition upon button click and if the condition turns out to be false, displaying the message to the user, and then I have to set the ...
15
votes
7answers
14k views

No output to console from a WPF application?

I'm using Console.WriteLine() from a very simple WPF test application, but when I execute the application from the command line, I'm seeing nothing being written to the console. Does anyone know what ...
6
votes
10answers
839 views

Good resources for learning WPF

I am very new to WPF and I am interested in learning it. I have gone through some tutorials, but I am looking for a website or book containing projects/assignments along with solutions so that you can ...
4
votes
2answers
4k views

How can I produce a “print preview” of a FlowDocument in a WPF application?

Various WPF applications of mine display FlowDocument's. I'm able to print them, using the approach described in the answer to Printing a WPF FlowDocument. Now I'd like to add a "print preview" ...
37
votes
9answers
26k views

SelectedItem in a WPF Treeview

How can I retrieve the item that is selected in a WPF-treeview? I want to do this in XAML, because I want to bind it. You might think that it is SelectedItem but apparently that does not exist is ...
161
votes
7answers
15k 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 ...
15
votes
4answers
43k views

WPF - How to create image button with template

I am trying to create a button which has 3 images: a Normal image, a Pressed image and a Disabled image (I will use these for creating up/down arrow buttons). I believe the correct approach would be ...
42
votes
6answers
41k views

WPF Data Binding and Validation Rules Best Practices

I have a very simple WPF application in which I am using data binding to allow editing of some custom CLR objects. I am now wanting to put some input validation in when the user clicks save. However, ...
38
votes
7answers
20k views

Firing a double click event from a WPF ListView item using MVVM

In a WPF application using MVVM, I have a usercontrol with a listview item. In run time, it will use databinding to fill the listview with a collection of objects. What is the correct way to attach a ...

1 2 3 4 5 211