How do I group Windows Form radio buttons?
How can I group the radio buttons in Windows Form application (a lot like ASP.NET’s radiobuttonlist!)? So I can switch between each case … Read more
How can I group the radio buttons in Windows Form application (a lot like ASP.NET’s radiobuttonlist!)? So I can switch between each case … Read more
I want to make simple Yes/No choiced MessageBox, but I think it is nonsense to design a form for that. I thought I … Read more
I was going to use the following project: https://github.com/scottwis/OpenFileOrFolderDialog However, there’s a problem: it uses the GetOpenFileName function and OPENFILENAME structure. OPENFILENAME has … Read more
To create a new event handler on a control you can do this c.Click += new EventHandler(mainFormButton_Click); or this c.Click += mainFormButton_Click; and … Read more
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. Want to improve this question? Update the question … Read more
What I want to achieve is very simple: I have a Windows Forms (.NET 3.5) application that uses a path for reading information. … Read more
I have a windows forms app with a textbox control that I want to only accept integer values. In the past I’ve done … Read more
I have a scenario. (Windows Forms, C#, .NET) There is a main form which hosts some user control. The user control does some … Read more
Microsoft should have implemented something snappy for INotifyPropertyChanged, like in the automatic properties, just specify {get; set; notify;} I think it makes a … Read more
Which is the simplest way to update a Label from another Thread? I have a Form running on thread1, and from that I’m … Read more