how to design a "setting" module in a software?
-
I'm designing a software and trying to use the patterns. how can use a pattern for designing a module that manage the system settings? mehdi
-
I'm designing a software and trying to use the patterns. how can use a pattern for designing a module that manage the system settings? mehdi
you could use a singleton pattern to hold the class that holds your settings.
Maximilien Lincourt Your Head A Splode - Strong Bad
-
you could use a singleton pattern to hold the class that holds your settings.
Maximilien Lincourt Your Head A Splode - Strong Bad
-
I'm designing a software and trying to use the patterns. how can use a pattern for designing a module that manage the system settings? mehdi
The best way to approach this is simple XML. You can implement your own Settings class by Opening an XML document, defining methods using XPath Queries and setting node values. Or you can use the Settings Class that is already built into .NET. The settings class built into .NET will hold global application settings and individual user settings. These settings are stored in different locations of a Windows operating system, to allow for multiple user computers and roaming profiles. Hope this helps! ~ CodeDoctor ~