Tagged Questions

WinForms is the informal term given to the graphical application programming interface (API) included as a part of Microsoft's .NET Framework, providing access to the native Microsoft Windows interface elements by wrapping the existing Windows API in managed code.

learn more… | top users | synonyms (6)

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 ...
108
votes
12answers
8k views

When setting a form's opacity should I use a decimal or double?

I'm new to C#, and I want to use a track-bar to change a form's opacity. This is my code: decimal trans = trackBar1.Value / 5000; this.Opacity = trans; When I try to build it, I get this error: ...
82
votes
0answers
34k 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) ...
65
votes
14answers
70k views

How to update GUI from another thread in C#?

What is the simplest way to update an label from another thread? My problem: I have a winform(thread1), from that I'm starting another thread(thread2). While thread2 is processing some files I would ...
64
votes
11answers
21k 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 ...
57
votes
14answers
24k views

Best Practice for Exception Handling in a Windows Forms Application?

I'm currently in the process of writing my first Windows Forms application. I've read a few C# books now so I've got a relatively good understanding of what language features C# has to deal with ...
52
votes
9answers
23k 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 ...
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 ...
46
votes
12answers
24k views

Show a Form without stealing focus (in C#)

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 ...
45
votes
8answers
15k 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 ...
38
votes
8answers
4k views

Implementing INotifyPropertyChanged - does a better way exist?

Microsoft should have implemented something snappy for INotifyPropertyChanged, like in the automatic properties, just specify {get;set;notify;} I think it makes a lot of sense to do it. Or are there ...
38
votes
5answers
11k views

How do I suspend painting for a control and its children?

I have a control which I have to make large modifications to. I'd like to completely prevent it from redrawing while I do that - SuspendLayout and ResumeLayout aren't enough. How do I suspend ...
38
votes
9answers
39k views

What's the proper way to minimize to tray a C# WinForms app?

What is the proper way to minimize a WinForms app to the system tray? I've seen hackish solutions like, "minimize, set ShowInTaskbar = false, then show your NotifyIcon." Solutions like that are ...
37
votes
7answers
12k views

Visual Studio build fails: unable to copy exe-file from obj\debug to bin\debug

Update: A sample project reproducing this bug can be found here at Microsoft Connect. I have also tested and verified that the solution given in the accepted answer below works on that sample project. ...
37
votes
19answers
30k views

Automatically select all text on focus in WinForms TextBox

When a C# WinForms text box receives focus, I want to select all the text in the textbox. To see what I mean, click in your web browser's address bar. See how all text was selected? I want to do ...
35
votes
20answers
18k views

.NET Usercontrols telerik devexpress infragistics ComponentOne: who's best?

I am considering the purchase of some .NET user controls with interest in both WinForms and asp.net. I have trialed in the past devexpress when I needed a hierarchical data grid for a personal project ...
34
votes
9answers
49k views

How do I make a textbox that only accepts numbers?

I have a windows forms app with a textbox control that I want to only accept integer values. In the past I've done this kind of validation by overloading the KeyPress event and just removing ...
33
votes
11answers
1k views

Understanding the MVC Pattern

I am having some trouble understanding the MVC Pattern. I do understand we are trying to decouple the GUI from the business logic, although I'm having problems understanding how. From what I ...
33
votes
6answers
32k views

Best practice to make a multi language application in C#/WinForms? [closed]

I've been looking into making applications suitable for multiple languages in C# since I need to work on a small project where this is the case. I have found basically two ways to do this: Set a ...
33
votes
10answers
18k views

Multi-Threaded splash screen in c#?

I know this question is all over the net, but I can't quite find what I am looking for and quite frankly this community seems more sophisticated than most I have seen. I want a splash screen to show ...
32
votes
9answers
12k views

BackgroundWorker vs background Thread

I have a stylistic question about the choice of background thread implementation I should use on a windows form app. Currently I have a BackgroundWorker on a form that has an infinite (while(true)) ...
31
votes
12answers
29k views

Is it possible to Embed Gecko or Webkit in a Windows Form just like a WebView?

I'd love to know if there is such thing as a Gecko.NET ;) I mean, just like we can embed a WebView and that is an "instance" of IE7 inside any Windows Forms application (and tell it to "navigateto ...
30
votes
9answers
12k views

How to Disable Alt + F4 closing form?

What is the best way to disable Alt + F4 in a c# win form to prevent the user from closing the form? I am using a form as a popup dialog to display a progress bar and I do not want the user to be ...
28
votes
11answers
10k views

Best way to hide a window from the Alt-Tab program switcher?

I've been a .NET developer for several years now and this is still one of those things I don't know how to do properly. It's easy to hide a window from the taskbar via a property in both Windows Forms ...
27
votes
9answers
36k views

How to detect the currently pressed key?

In WinForms, you can know, at any time, the current position of the cursor thanks to the Cursor class. The same thing doesn't seem to be available for the keyboard. Is it possible to know if, for ...
27
votes
1answer
15k views

How can I make a ComboBox non-editable in .net?

I want to have a "select-only" ComboBox that provides a list of items for the user to select from. Typing should be disabled in the text portion of the ComboBox control. My initial Googling of this ...
26
votes
8answers
1k views

Application that uses WebBrowser control crashes after installing IE9

I've installed IE 9 last week and since, my c# .net application crashes about 20% of times. The debugger is unable to show something useful besides stopping at Program.cs Application.Run(new ...
26
votes
4answers
4k views

What's the difference between Application.ThreadException and AppDomain.CurrentDomain.UnhandledException?

Alright, this is an easy one: What's the difference between Application.ThreadException and AppDomain.CurrentDomain.UnhandledException? Do I need to handle both? Thanks!
26
votes
16answers
4k 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 ...
26
votes
7answers
22k views

Advantage of WPF app vs Winform for business apps?

I know asp.net and winform development. I am not the type of developer who jumps into a new technology just because it's new. It needs to give me extra benefits like higher productivity. What are the ...
26
votes
4answers
8k views

Panel.Dock Fill ignoring other Panel.Dock setting

If you create a panel on a form and set it to Dock=Top and drop another panel and set its Dock=Fill, it may fill the entire form, ignoring the first panel. Changing the tab order does nothing.
26
votes
12answers
5k 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 ...
25
votes
5answers
15k views

Best way to implement keyboard shortcuts in winforms?

I'm looking for a best way to implement common windows keyboard shortcuts (for example Ctrl-F, Ctrl-N) in my winforms app in C#. The app has a main form which hosts many child forms (one at a time). ...
25
votes
8answers
11k views

Horrible redraw performance of the DataGridView on one of my two screens

I've actually solved this, but I'm posting it for posterity. I ran into a very odd issue with the DataGridView on my dual-monitor system. The issue manifests itself as an EXTREMELY slow repaint of ...
24
votes
12answers
6k views

Avoiding the woes of Invoke/BeginInvoke in cross-thread WinForm event handling?

I'm still plagued by background threading in a WinForm UI. Why? Here are some of the issues: Obviously the most important issue, I can not modify a Control unless I'm executing on the same thread ...
24
votes
4answers
3k 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, ...
23
votes
1answer
587 views

How can I force Aero to draw a borderless window as if it were active, even if it's not?

I'd like to have the same effect as the windows 7 taskbar. I've looked in this question: Keep Window Looking Active It works great but only if the window has a non-client area. My window is ...
23
votes
5answers
26k views

DateTimePicker: pick both date and time

Is it possible to use DateTimePicker (Winforms) to pick both date and time (in the dropdown)? How do you change the custom display of the picked value? Also, is it possible to enable the user to type ...
23
votes
6answers
7k views

How do I drag and drop files into a c# application?

I've seen this done in Borland's Turbo C++ environment, but I'm not sure how to go about it for a C# app I'm working on. Are there best practices or gotchas to look out for?
22
votes
4answers
642 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
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 ...
22
votes
10answers
3k 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?
22
votes
6answers
4k 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 ...
21
votes
8answers
1k views

How do I track down the cause of a StackOverflowException in .NET?

I get a StackOverflowException when I run the following code: private void MyButton_Click(object sender, EventArgs e) { MyButton_Click_Aux(); } private static volatile int reportCount; private ...
21
votes
4answers
15k views

Redirect console output to textbox in separate program C#

I'm developing an Windows Forms application that requires me to call a separate program to perform a task. The program is a console application and I need to redirect standard output from the console ...
21
votes
2answers
5k views

Weak references

can someone explain the main benefits of different types of references in C#, weak references, soft references, phantom references, strong references. We have an application that is consuming a lot ...
21
votes
6answers
16k views

Winforms - MVP examples

Does anyone have a good example code or test project for explaining someone MVP pattern. There are a lot of explanation links but i want to have some good example code to show others without ...
21
votes
6answers
32k views

How do you show animated GIFs on a Windows Form (c#)

I have a form showing progress messages as a fairly long process runs. It's a call to a web service so I can't really show a percentage complete figure on a progress bar meaningfully. (I don't ...
20
votes
4answers
9k views

word wrap for label in winforms

Hi how can we get word wrap functionality to a label in winforms? I place a label in a panel and added some text to label dyanamically. But it exceeds the panel length. How can i solve this? Thanks ...
20
votes
4answers
28k views

Winforms TableLayoutPanel adding rows programatically

I've been fighting with this for a while, and have found that a number of other people struggle with the TableLayoutPanel (.net 2.0 Winforms) as well. Problem I am attempting to take a 'blank' ...

1 2 3 4 5 438