Top "Winforms" questions

WinForms is the informal name given to Windows Forms, a GUI class library in the Microsoft .NET Framework and Mono.

Find a row in dataGridView based on column and value

I have a dataGridView that has 3 columns: SystemId, FirstName, LastName that is bound using database information. I would like to …

c# winforms datagridview
Windows Forms ProgressBar: Easiest way to start/stop marquee?

I am using C# and Windows Forms. I have a normal progress bar working fine in the program, but now …

c# winforms progress-bar
Chart creating dynamically. in .net, c#

Does anybody have some experience working with charts in .NET? Specially I want to create them programmatically. using System; using …

c# .net winforms charts
How do you change the text in the Titlebar in Windows Forms?

I am trying to set a condition that would change the writing inside the title bar... But how do I …

c# winforms titlebar
How do I do logging in C# without using 3rd party libraries?

I would like to implement logging in my application, but would rather not use any outside frameworks like log4net. …

c# .net winforms performance logging
minimize app to system tray

I have a Windows forms app powered by C# and Visual Studio 2010. How can I minimize my app to system …

c# windows winforms
DataGridView AutoFit and Fill

I have 3 columns in my DataGridView. What I am trying to do is have the first 2 columns auto fit to …

c# winforms datagridview
Prompt Dialog in Windows Forms

I am using System.Windows.Forms but strangely enough don't have the ability to create them. How can I get …

c# .net winforms dialog prompt
Can't use System.Windows.Forms

I have tried making (my first) a C# program: using System; using System.Collections.Generic; using System.Linq; using System.…

c# winforms visual-studio
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 …

c# .net winforms combobox