我需要使用在主窗口构造函数中注入的记录器来启动我的 WPF 应用程序。
使用参数启动 MainWindow() 的流程是否正常?
(我读了这个“如何编辑.. ”并且我没有像他们建议的那样做..)
public partial class App : Application
{
private void Application_Startup(object sender, StartupEventArgs e)
{
ILoggingService logger = new NLogService(string.Format("testLogger"));
MainWindow mainWindows = new MainWindow(logger);
mainWindows.Show();
}
public partial class MainWindow : Window
{
public MainWindow(ILoggingService logger)
{
InitializeComponent();
this.logger = logger;
}
<Application x:Class="Test.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Startup="Application_Startup">