C# Enterprise Block 应用程序设置和 Settings.Settings 设计器

发布于 2024-08-20 10:56:53 字数 230 浏览 8 评论 0原文

我正在使用企业应用程序块的 v4,并且正在尝试了解如何访问我使用企业库配置工具添加的应用程序设置。就好像代码无法识别这些设置,即使我可以在 app.config 中看到它们。我确实添加了 Settings.Settings 设计器,即使在该设计器中添加的设置不会像通常那样显示在 app.config 中(如果我不使用 Enterprise Block),我也可以以标准方式访问这些

设置我可以访问通过企业块添加的应用程序设置吗?

I am working with v4 of the Enterprise Application block and I am trying to learn how to access the Application Settings that I have added using the Enterprise Library Configuration tool. It's as if the code does not recognize the settings even though I can see them in the app.config. I DO have a Settings.Settings designer added and I CAN get to those settings the standard way even though the settings added in that designer do NOT show up in the app.config like they normally would if I am NOT using the Enterprise Block

How do I access the App Settings that I added with the Enterprise Block?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

锦上情书 2024-08-27 10:56:53

添加对 System.Configuration 的引用

使用 ConfigurationManager.AppSettings["settingname"].ToString() 访问您的应用程序设置,如果您有多个项目,则将主项目 app.config 作为链接添加到其他项目。

Add reference to System.Configuration

Use ConfigurationManager.AppSettings["settingname"].ToString() to access your application settings, if you have multiple projects then add the main project app.config to other projects as a link.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文