Creating a settings form

I have a very small project and I want to create a settings form. What is the best way to do this? Just create another windows form with checkboxes / text fields and save these parameters with a class Properties.Settings? This will probably work, but I would like to get some input on what you think is the best way to do this.

+3
source share
2 answers

I usually make a new form that stores all the controls necessary to change any parameters that I have. I usually use the Properties.Settings class to store my settings, but sometimes I use the SQLite database. I think it comes down to what works best. When using SQLite, you should also have some kind of shell that makes it easier to read / write your settings from / to the database.

+2
source

The way you propose is a perfectly suitable approach.

+1
source

All Articles