Avalonia - 如何创建新的 window?
Avalonia - how to create new window?
我正在尝试熟悉 Avalonia,并将我的一个项目移植到它上面。
我在创建新的 windows 时遇到问题 - 我使用 Tutorial 中的手册,并在我的解决方案资源管理器中得到 .xaml.cs 文件:
文件 AboutView.xaml 在项目文件夹中创建,包含
<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="MyProjectName.Views.AboutView"
Title="AboutView">
Welcome to Avalonia!
但未显示。 AboutView.xaml.cs 包含以下代码,并显示错误:
我做错了什么?
我通过在资源管理器中切换到文件系统(或类似系统)并找到扩展名为 .csproj 的文件来修复此问题。我删除了这个配置部分,问题消失了:
<ItemGroup>
<Page Include="Views\AdditionalWindow.xaml">
<SubType>Designer</SubType>
</Page>
</ItemGroup>
我正在尝试熟悉 Avalonia,并将我的一个项目移植到它上面。
我在创建新的 windows 时遇到问题 - 我使用 Tutorial 中的手册,并在我的解决方案资源管理器中得到 .xaml.cs 文件:
文件 AboutView.xaml 在项目文件夹中创建,包含
<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="MyProjectName.Views.AboutView"
Title="AboutView">
Welcome to Avalonia!
但未显示。 AboutView.xaml.cs 包含以下代码,并显示错误:
我做错了什么?
我通过在资源管理器中切换到文件系统(或类似系统)并找到扩展名为 .csproj 的文件来修复此问题。我删除了这个配置部分,问题消失了:
<ItemGroup>
<Page Include="Views\AdditionalWindow.xaml">
<SubType>Designer</SubType>
</Page>
</ItemGroup>