Delphi Prism Application Settings

113 Views Asked by At

In .net you can acces the Properties of your application trough code. How can you do the same in Oxygene / delphi prism ?

Directory.GetFiles(Properties.Settings.Default.
1

There are 1 best solutions below

0
On BEST ANSWER

You are almost there, to access the settings of your application, you must add the YourAppNameSpace.Properties namespace to your uses clause and then access the setting on this way

Settings.Default.MySettingName

Or using a full qualified name, like so :

YourAppNameSpace.Properties.Settings.Default.MySettingName