引导程序文件的示例?
有没有人有一个引导程序类的好例子,我可以看到作为参考。
我似乎无法在任何地方找到一个,搜索谷歌但没有运气。
搜索了帮助文件,没有运气。
Does anyone have a good example of a bootstrapper class I can see for reference..
I can't seem to find one anywhere, searched google but no luck.
Searched the helpfile and no luck..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您正在搜索在应用程序开始时配置容器的类,您可以下载最新的 Prism 放下并查找 UnityBootstrapper 类。
请考虑到这只是注册 Prism 应用程序运行所需的服务,因此您的引导程序可能需要不同的容器配置。
If you are searching for a class that that configures the container at the beggining of an application, you can download the latest Prism drop and look for the UnityBootstrapper class.
Take into account that this is only registering the necessary services for a Prism application to run, so your bootstrapper will probably require a different container configuration.
您可以在 WPF:MVVM & 中找到另一个示例。 Unity Kiosk 示例项目。这里是 Bootsrapper 类:
和 IModule 接口:
最后,实现的模块之一:
You can find another example in the WPF:MVVM & Unity Kiosk sample project. Here the Bootsrapper class:
And the IModule interface:
Finally, One of the implemented Modules: