gpt4 book ai didi

c# - 如何在 WPF 应用程序中配置 StructureMap?

转载 作者:行者123 更新时间:2023-11-30 22:29:43 26 4
gpt4 key购买 nike

我正在 WPF 中开发应用程序,我想知道如何开始配置 StructureMap。我来自 MVC 背景,我通常会在 Global.asax 中配置 StructureMap。

下面的文章建议我把配置放在main()方法

http://structuremap.net/structuremap/ConfiguringStructureMap.htm

但在 WPF 中,main() 方法位于 App.g.i.cs 中并声明

This code was generated by a tool & Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.

在 WPF 中似乎没有合适的 Global.asax 等价物,那么应该在哪里配置呢?

最佳答案

为此使用 App.xaml.cs。

public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);

//Do your stuff here
}
}

关于c# - 如何在 WPF 应用程序中配置 StructureMap?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10042675/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com