XAML 错误:在类型上找不到匹配的构造函数

p8ekf7hl  于 2023-08-01  发布在  其他
关注(0)|答案(3)|浏览(145)

我有一个WPF应用程序,我使用多个表单。当我们启动应用程序时,会打开一个主窗体,称为MainWindow.xaml。然后,该表单具有多个表单,这些表单根据用户选项打开。有一个形式StartClassWindow.xaml。目前我正在处理这个表单,所以我希望它直接启动,而不是MainWindow.xaml。因此,我更改了app.xaml startupuri

<Application x:Class="Class.App"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         DispatcherUnhandledException="Application_DispatcherUnhandledException"
         StartupUri="StartClassWindow.xaml">
<Application.Resources>

</Application.Resources>
</Application>

字符串
但随后它开始给出如下错误:
在类型“Class.StartClassWindow”上找不到匹配的构造函数。您可以使用Arguments或FactoryMethod指令构造此类型。'行号'3'和行位置' 9 '。
下面是StartClassWindow.xaml.cs

namespace Class
{
    public partial class StartClassWindow : System.Windows.Window
    {

       public StartClassWindow(string classData)
       {
          InitializeComponent();
          className = classData;
          function();
       }
       //rest of the code.
    }
}

vohkndzv

vohkndzv1#

你需要向StartClassWindow添加一个无参数的构造函数,如下所示:

public StartClassWindow(string classData)
{
    InitializeComponent();
    className = classData;
    function();
}

public StartClassWindow()
{

}

字符串
或者,如果你不想有另一个构造函数,你可以覆盖App.xaml.cs中的OnStartup方法,但你应该首先删除App.xaml中的StartupUri="StartClassWindow.xaml"。如下所示:

protected override void OnStartup(StartupEventArgs e)
{
    StartClassWindow st = new StartClassWindow("");
    st.Show();
}

im9ewurl

im9ewurl2#

通常,你的构造函数必须是无参数的:

public Login()

字符串
但是,由于你使用的是依赖注入,就像这样:

public Login(IUserService userService)


构造函数不是无参数的,如果不告诉框架如何示例化页面,它就无法示例化页面。
为此,有几个选项:

从构造函数中移除服务

就像这样,但是你需要以不同的方式访问userservice:

public Login()

pre .net 4.8、4.7,使用Unity(或Prism)

您可以使用像Unity这样的依赖注入框架来注册组件。其描述如下:
https://www.wpftutorial.net/ReferenceArchitecture.html

public class App : Application
{
    protected override void OnStartup(StartupEventArgs e)
    {
        IUnityContainer container = new UnityContainer();
        container.RegisterType<IUserService, UserService>();
       
        MainWindow mainWindow = container.Resolve<MainWindow>();
        mainWindow.Show();
    }
}

手动使用导航服务

手动导航,并执行您自己的构造:

NavigationService.Navigate(new LoginPage(new UserService);


如下所述:https://learn.microsoft.com/en-us/dotnet/desktop/wpf/app-development/navigation-overview?view=netframeworkdesktop-4.8

.net 5 WPF,使用内置DI

如果你正在使用.net 5,这里有一个教程。确保注册窗口和服务:
https://executecommands.com/dependency-injection-in-wpf-net-core-csharp/
下面是一个例子:

private void ConfigureServices(ServiceCollection services)
{
    services.AddScoped<IUserService,UserService>();
    services.AddSingleton<MainWindow>();
}

private void OnStartup(object sender, StartupEventArgs e)
{
    var mainWindow = serviceProvider.GetService<MainWindow>();
    mainWindow.Show();
}

iyfamqjs

iyfamqjs3#

我不得不注解掉Startup和StartupUri

<Application x:Class="Data_Export_Refinity.App"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             >
    <!-- Startup="Application_Startup">
    StartupUri="MainWindow.xaml" -->
    <Application.Resources>

    </Application.Resources>
</Application>

字符串

相关问题