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 chosen from the options. 9 Answers...
I want to make simple Yes/No choiced MessageBox, but I think it is nonsense to design a form for that. I thought I could use MessageBox, add buttons, etc....
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 the member named templateID, which is...
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 to remove an event handler you...
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for Stack Overflow....
What I want to achieve is very simple: I have a Windows Forms (.NET 3.5) application that uses a path for reading information. This path can be modified by...
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...
I have a scenario. (Windows Forms, C#, .NET) There is a main form which hosts some user control. The user control does some heavy data operation, such that if...
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....
Which is the simplest way to update a Label from another Thread? I have a Form running on thread1, and from that I’m starting another thread (thread2). While thread2...