30
votes
15answers
3k views
When is Winforms the correct choice vs. WPF?
Disclaimer: I'm not generally a Windows Client developer.
I presume that WPF is intended to eventually replace WinForms altogether, but for now, they both are shipping.
My question is, when is one …
26
votes
10answers
2k views
When creating a new GUI, is WPF the preferred choice over Windows Forms?
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 …
19
votes
8answers
3k views
UI Design Pattern for Windows Forms (like MVVM for WPF)
MVVM is most commonly used with WPF because it is perfectly suited for it. But what about Windows Forms? Is there an established and commonly used approach / design pattern like this for Windows Forms …
19
votes
11answers
2k views
pitfalls/gotchas of click-once/smart-client deployment in .NET
I have several .NET WinForms applications that I'm preparing to convert into a click-once/smart-client deployment scenario. I've read the isn't-this-great tutorials but want to ask if there are …
19
votes
10answers
4k views
Looking for a MVC Sample for WinForms
Can you point me to a good real-world WinForms MVC application/framework?
I understand the Model part - that's your data, and I know the forms are the views, but what's the controller? Especially …
17
votes
4answers
1k views
How to store passwords in Winforms application?
I have some code like this in a winforms app I was writing to query a user's mail box Storage Quota.
DirectoryEntry mbstore = new DirectoryEntry(@"LDAP://" + strhome, m_serviceaccount, m_pwd, …
16
votes
7answers
708 views
Why would I see ~20% speed increase using native code?
Any idea why this code:
extern "C" __declspec(dllexport) void Transform(double x[], double y[], int iterations, bool forward)
{
long n, i, i1, j, k, i2, l, l1, l2;
double c1, c2, tx, ty, t1, …
15
votes
8answers
2k views
Implementing MVC with Windows Forms
Where can I find a good example on how to completely implement the MVC pattern in Windows Forms. I found many tutorials and code examples on various sites (e.g. CodeProject, .NetHeaven) but many are …
15
votes
7answers
3k views
WPF versus Winforms
What are the advantages and disadvantages between using WPF (Windows Presentation Foundation) over Winforms?
What are the considerations that need to be made when choosing between the two?
Thanks.
14
votes
6answers
1k views
Winforms app like google chrome with multiple processes
Is there anyway to use C# to build a container app where each tab is actually its own process like with Google chrome.
14
votes
11answers
6k views
Show a Form without stealing focus (in C#)
Hi, i'm using a Form to show notifications (it appears at the bottom right of the screen) but the problem that i'm having is that when I show this form it steals the main form focus.
Is there a way to …
14
votes
10answers
1k views
What’s the best way for a .NET winforms application to update itself without using ClickOnce?
For technical reasons, I can't use ClickOnce to auto-update my .NET application and its assemblies. What is the best way to handle auto-updating in .NET?
14
votes
6answers
1k views
Is there any way to automate windows forms testing?
I am familiar with nunit for unit testing of the business layer however I am looking now to automate the test of the win forms gui layer.
I have seen watin and the watin recorder for automating …
13
votes
14answers
766 views
Best practices for C# GUI naming conventions?
GUIs, whether written in WinForms or XAML, seem to have the most widely differing naming conventions between projects I see. For a simple TextBox for a person's name, I've seen various naming …
13
votes
10answers
1k 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 …
