我尝试开始使用 .Net MAUI,并且按照以下步骤设置了我的开发环境:
- https://docs.microsoft.com/en-us/dotnet/maui/get-started/first-app?pivots=windows
- https://docs.microsoft.com/en-us/windows/apps/project-reunion/set-up-your-development-environment#required-workloads-and-components
- https://docs.microsoft.com/en-us/xamarin/android/get-started/installation/android-emulator/device-manager?tabs=windows&pivots=windows
我还运行了“maui-check”CLI 工具并检查了所有内容,但是当我使用 Visual Studio 2019 v16.11.0 Preview 2.0(在 Windows 10 Home 20H2 上运行)创建新的 .NET MAUI 应用程序时,我得到了“当前上下文中不存在名称“InitializeComponent”的构建错误。它也没有找到对表单上任何控件的引用,例如“当前上下文中不存在名称‘CounterLabel’”
我已经尝试了这篇文章中的几乎所有内容当前上下文中不存在名称“InitializeComponent”,其中包含诸如添加和删除文件、进行更改并将它们改回之类的建议……基本上除了向许愿井扔一分钱之外的所有内容。
我发现一个常见的错误是命名空间不匹配,但这是我展示的命名空间是正确的:
应用程序.xaml:
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:MauiApp1"
x:Class="MauiApp1.App">
...
</Application>
应用程序.xaml.cs
using Microsoft.Maui;
using Microsoft.Maui.Controls;
using Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific;
using System;
using Application = Microsoft.Maui.Controls.Application;
namespace MauiApp1
{
public partial class App : Application
{
public App()
{
InitializeComponent(); <-- This is throwing the build error...
}
protected override IWindow CreateWindow(IActivationState activationState)
{
this.On<Microsoft.Maui.Controls.PlatformConfiguration.Windows>()
.SetImageDirectory("Assets");
return new Microsoft.Maui.Controls.Window(new MainPage());
}
}
}
MainPage.xaml:
ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="MauiApp1.MainPage"
BackgroundColor="{DynamicResource PageBackgroundColor}">
...
</ContentPage>
MainPage.xaml.cs
using System;
using Microsoft.Maui.Controls;
namespace MauiApp1
{
public partial class MainPage : ContentPage
{
public MainPage()
{
InitializeComponent(); <-- This is throwing the build error...
}
int count = 0;
private void OnCounterClicked(object sender, EventArgs e)
{
count++;
CounterLabel.Text = $"Current count: {count}"; <-- This is throwing the build error...
}
}
}
任何帮助将不胜感激!
---=== 更新 ===---
我创建的项目的路径是 c:\develop\c#...... 只要我将项目复制到不包含“c#”的文件夹,它就可以工作。这显然会导致后台的某些解析失败。