Top "Winforms" questions

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

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 …

c# .net winforms inotifypropertychanged
Filtering DataGridView without changing datasource

I'm developing user control in C# Visual Studio 2010 - a kind of "quick find" textbox for filtering datagridview. It should …

c# winforms visual-studio-2010 datagridview filter
How to know user has clicked "X" or the "Close" button?

In MSDN I found CloseReason.UserClosing to know that the user had decided to close the form but I guess …

c# .net winforms
Getting data from selected datagridview row and which event?

I have a DataGridView (Selectionmode: FullRowSelect) on a windows form along with some textboxes, so what i want to do …

c# winforms datagridview
Which Radio button in the group is checked?

Using WinForms; Is there a better way to find the checked RadioButton for a group? It seems to me that …

c# .net winforms radio-button
How to hide TabPage from TabControl

How to hide TabPage from TabControl in WinForms 2.0?

c# winforms tabcontrol tabpage
How to display a Windows Form in full screen on top of the taskbar?

I have a .net windows application that needs to run in full screen. When the application starts however the taskbar …

c# .net winforms fullscreen taskbar
How to handle click event in Button Column in Datagridview?

I am developing a windows application using C#. I am using DataGridView to display data. I have added a button …

c# .net winforms datagridview
Getting the first and last day of a month, using a given DateTime object

I want to get the first day and last day of the month where a given date lies in. The …

c# .net winforms datetime
how to put focus on TextBox when the form load?

I have in my C# program textBox I need that when the program start, the focus will be on the …

c# winforms