237
votes
23answers
86k 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 ...
90
votes
19answers
17k 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 ...
82
votes
7answers
67k 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 ...
55
votes
15answers
63k 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
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 ...
45
votes
4answers
15k 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 ...
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 ...
42
votes
7answers
24k 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 ...
40
votes
12answers
36k views

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 ...
39
votes
3answers
7k views

ItemsControl with horizontal orientation

Do you know any controls inherited from the ItemsControl that have horizontal orientation of items?
38
votes
9answers
22k views

WPF chart controls

I am looking for a very simple WPF chart which should have a 2D graph and and should have pan and zoom facilities .
35
votes
5answers
11k 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 ...
35
votes
8answers
40k views

WPF User Control Parent

I have a user control that I load into a main window at runtime. I cannot get a handle on the containing window from the user control. I have tried this.Parent, but it's always null. Does anyone ...
35
votes
5answers
8k views

How do you do AppBar docking (to screen edge, like WinAmp) in WPF?

Is there any complete guidance on doing AppBar docking (such as locking to the screen edge) in WPF? I understand there are InterOp calls that need to be made, but I'm looking for either a proof of ...
32
votes
10answers
20k views

Bring a window to the front in WPF

How can I bring my WPF application to the front of the desktop? So far I've tried: SwitchToThisWindow(new WindowInteropHelper(Application.Current.MainWindow).Handle, true); SetWindowPos(new ...
28
votes
3answers
3k views

How can a Metro app in Windows 8 communicate with a backend desktop app on the same machine?

In a situation where you have the UI frontend built using the new Metro style of apps for windows 8, and would like it to communicate with a .NET application running on the desktop on the same local ...
28
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 ...
27
votes
3answers
2k views

How do I make a WPF window movable by dragging the extended glass frame?

In applications like Windows Explorer and Internet Explorer, one can grab the extended glass areas beneath the title bar and drag windows around. For WinForms applications, forms and controls are as ...
26
votes
4answers
13k views

Disposing WPF User Controls

I have created a custom WPF user control which is intended to be used by a third party. My control has a private member which is disposable, and I would like to ensure that its dispose method will ...
26
votes
4answers
15k views

How can I get the active screen dimensions?

What I am looking for is the equivalent of System.Windows.SystemParameters.WorkArea for the monitor that the window is currently on. Clairification: The window in question is WPF, not WinForms.
25
votes
8answers
12k views

MVVM Light Toolkit samples

Does anyone know opensource WPF applications created using MVVM Light Toolkit? Or any samples?
25
votes
18answers
6k views

XAML or C# code-behind

I don't like to use XAML. I prefer to code everything in C#, but I think that I am doing things wrong. In which cases it is better to use XAML and when do you use C#? What is your experience?
24
votes
3answers
9k views

WPF Application that only has a tray icon

I am a total WPF newbie and wonder if anyone could give me some pointers how to write an application that starts minimized to tray. The idea is that it periodically fetches an RSS Feed and creates a ...
24
votes
5answers
23k views

Getting the application's directory from a WPF application

I found solutions for Windows Forms with AppDomain but what would be the equivalent for a WPF Application object?
23
votes
6answers
15k views

Is WPF on Linux (already) possible?

I love programming with .NET, especially C# 3.0, .NET 3.5 and WPF. But what I especially like is that with Mono .NET is really platform-independent. Now I heard about the Olive Project in Mono. I ...
22
votes
4answers
654 views

WPF or Windows Forms

I've been playing around with C# console applications for about a year and I want to move on to creating GUI applications. I have never done any GUI development besides basic Java applications, but I ...
22
votes
4answers
12k 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?
22
votes
8answers
7k views

How can I make a WPF combo box have the width of its widest element in XAML?

I know how to do it in code, but can this be done in XAML ? Window1.xaml: <Window x:Class="WpfApplication1.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
22
votes
10answers
3k views

How do I create a C# app that decides itself whether to show as a console or windowed app?

Is there a way to launch a C# application with the following features? It determines by command-line parameters whether it is a windowed or console app It doesn't show a console when it is asked to ...
21
votes
2answers
3k views

difference between ObservableCollection and BindingList

I want to now the difference between ObservableCollection and BindingList because I used both to notify for any add/delete change in Source but I actually do not know the difference between these two ...
21
votes
2answers
19k views

Automatic vertical scroll bar in WPF TextBlock?

I have a TextBlock in WPF. I write many lines to it, far exceeding its vertical height. I expected a vertical scroll bar to appear automatically when that happens, but it didn't. I tried to look for a ...
21
votes
7answers
5k views

.NET WPF Remember window size between sessions

Basically when user resizes my application's window I want application to be same size when application is re-opened again. At first I though of handling SizeChanged event and save Height and Width, ...
21
votes
6answers
12k views

WPF/C#: Where should I be saving user preferences files?

What is the recommended location to save user preference files? Is there a recommended method for dealing with user preferences? Currently I use the path returned from ...
21
votes
1answer
7k views

How can I disable horizontal scrolling in a WPF listbox?

This seems to be an absurdly simple question but Google and SO searches yield nothing. How can I disable horizontal scrolling in a WPF listbox when items take up more horizontal space than is ...
21
votes
6answers
8k views

databind the Source property of the WebBrowser in WPF

Does anyone know how to databind the .Source property of the WebBrowser in WPF ( 3.5SP1 )? I have a listview that I want to have a small WebBrowser on the left, and content on the right, and to ...
20
votes
1answer
491 views

mysterious number 18888888888888888 [closed]

One of our testers, managed to set a slider bound variable to 18888888888888888 which can only take values between 1-100 normally. (I can observe it in view model which is saved to a xaml file.) ...
20
votes
2answers
647 views

WPF Keep the most left column of a treeview visible while scrolling horizontally

I implemented a treeview with columns in WPF using ControlTemplate and a stackpanel of GridViewRowPresenter. I followed this article : ...
20
votes
6answers
7k views

WPF MVVM Focus Field on Load

I have a View that has a single TextBox and a couple Buttons below it. When the window loads I want that TextBox to have focus. If I was not using MVVM I would just call TextBox.Focus() in the ...
20
votes
7answers
17k 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
19
votes
8answers
975 views

Where to store external dlls?

I my project I'm using some 3rd party librarys. I include them using the references folder in the Visual Studio. But where should i save the dlls files? They are referenced from a path in the file ...
19
votes
11answers
3k views

How bad is the WPF Learning Curve? [closed]

I've read and heard from several people that WPF has a pretty steep learning curve (depending on how knowledgeable or experienced you are). Seems like most people can get the demo or starter projects ...
19
votes
3answers
4k views

Is there a way to check if WPF is currently executing in design mode or not?

Does anyone know of some global state variable that is available so that I can check if the code is currently executing in design mode (e.g. in Blend or Visual Studio) or not? It would look ...
19
votes
9answers
17k views

How to handle WndProc messages in WPF?

Finding WPF a steep learning curve. In good ol' Windows Forms, I'd just override WndProc, and start handling messages as they came in. Can someone show me an example of how to achieve the same ...
19
votes
8answers
2k views

WPF — Where do you draw the line between code and XAML?

I'm a long-time C#/.NET programmer but totally new to WPF and the System.Windows.Controls namespace and XAML. The more I learn about it the more I realize that you can do pretty much all of your GUI ...
19
votes
6answers
10k views

Best way to bind WPF properties to ApplicationSettings in C#?

What is the best way to bind WPF properties to ApplicationSettings in C#? Is there an automatic way like in a Windows Forms Applicatoin? Similar to this question, how (and is it possible to) do you ...
18
votes
5answers
470 views

I'm a .Net, C# and WPF programmer. Is Expression Blend worth?

I mean, as a normal developer, is there something that I will achieve with Expression Blend that I won't using VS? I have no idea of Expression Blend and at first sight didn't look very friendly / ...
18
votes
2answers
463 views

.NET Memory issues loading ~40 images, memory not reclaimed, potentially due to LOH fragmentation

Well, this is my first foray into memory profiling a .NET app (CPU tuning I have done) and I am hitting a bit of a wall here. I have a view in my app which loads 40 images (max) per page, each ...
18
votes
4answers
831 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
1answer
1k views

Task continuation on UI thread

Is there a 'standard' way to specify that a task continuation should run on the thread from which the initial task was created? Currently I have the code below - it is working but keeping track of ...
18
votes
6answers
8k views

How to exit a WPF app programmatically?

In the few years I've been using C# (WINFORMS), I've never used WPF. But now I love WPF, but I don't know how the hell I am supposed to exit my application when the user clicks on the Exit menu item ...

1 2 3 4 5 300