Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 .net 中,您可以通过代码访问应用程序的属性。你怎么能在 Oxygene/delphi prism 中做同样的事情?
Directory.GetFiles(Properties.Settings.Default.
您快到了,要访问应用程序的设置,您必须将 YourAppNameSpace.Properties命名空间添加到您的 uses 子句,然后以这种方式访问设置
YourAppNameSpace.Properties
Settings.Default.MySettingName
或使用完整的限定名称,如下所示:
YourAppNameSpace.Properties.Settings.Default.MySettingName