Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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? Simply creating another Windows Form with checkboxes / textboxes and saving these settings using Properties.Settings class? It'll probably work but I'd like to have some input on what you think would be the best way to do this.

like image 877
Devator Avatar asked Jun 18 '26 01:06

Devator


1 Answers

I usually make a new form that holds all the controlls necessary to change whatever settings I have. I normally use the Properties.Settings class to hold my settings, but I sometimes use a SQLite database too. I guess it comes down to whatever is better suited. When using SQLite you also have to have some kind of wrapper that makes it easy to read/write your settings from/to the databse.

like image 166
Splatbang Avatar answered Jun 19 '26 14:06

Splatbang