13

我尝试开始使用 .Net MAUI,并且按照以下步骤设置了我的开发环境:

  1. https://docs.microsoft.com/en-us/dotnet/maui/get-started/first-app?pivots=windows
  2. https://docs.microsoft.com/en-us/windows/apps/project-reunion/set-up-your-development-environment#required-workloads-and-components
  3. 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#”的文件夹,它就可以工作。这显然会导致后台的某些解析失败。

4

4 回答 4

18

我遇到了同样的问题,看起来当我在 VS 中创建 ContentPage 时它仍然指向 Xamarin Forms。将命名空间更改为 MAUI 后,我将 XAML 页面的构建操作(右键单击 Xaml 页面>>属性>>构建操作)更新为 MauiXaml,它对我有用。

于 2021-07-04T16:08:07.693 回答
17
  1. 关闭 VS2022
  2. 打开VS2022
  3. 使用菜单 VS2022 打开项目(文件 - 打开 - 项目...)
于 2021-10-20T14:00:03.380 回答
2

我创建的项目的路径是 c:\develop\c#...... 只要我将项目复制到不包含“c#”的文件夹,它就可以工作。这显然会导致后台的某些解析失败。

于 2021-06-20T01:12:35.117 回答
0

一个非常简单的答案,但发生在我身上几次。

确保您使用的是VS 2022的预览版。很容易意外打开任何其他版本的VS,这将导致错误发生。

于 2022-01-16T23:04:06.393 回答