有人能够在 winforms 应用程序中使用 .NET 提供程序模型吗?
我见过很多 ASP.NET 的例子,但没有见过 winforms 的例子。 换句话说,使用 app.config 而不是 web.config。 如果不起作用那就太可惜了。
I've seen oodles of examples for ASP.NET, but none for winforms. In other words, using the app.config instead of web.config. It would be a shame if it did not work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它的工作原理完全相同。 基本提供程序模型是 System.Configuration 的一部分,它抽象(提供程序!)应用程序是通过 app.config 还是 web.config 配置。
It works exactly the same. The base provider model is part of System.Configuration, which abstracts (provider!) whether the application is configured via app.config or web.config.
如果您想使用 ASP.NET 提供程序,请阅读客户端应用程序服务在您的 Windows 应用程序中。
如果您希望在 Windows 应用程序中使用提供者模式,也可以这样做。 我曾经这样做是为了允许在真实扫描仪和假扫描仪之间进行配置(是的,我知道我可以使用 IOC 容器)。
CodeProject 可能有多个提供程序教程 - 这是一个:链接文本
Read about Client Application Services if you want to use ASP.NET providers in your Windows apps.
If you wish to use the Provider Pattern in a Windows app, this can also be done. I once did this to allow configuration between a real scanner and a fake one (yes I know I could of used an IOC container).
CodeProject probably has several provider tutorials- here is one: link text