我试图创建一个文件(.xaml),一个内容页,但我创建的所有文件都发生此错误,我该如何解决此问题?
的数据
代码:
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="NewOutlookAddInCreatio.Views.Contacts.ContactViewPanel">
<ContentPage.Content>
<StackLayout>
<Label Text="Welcome to Xamarin.Forms!"
VerticalOptions="CenterAndExpand"
HorizontalOptions="CenterAndExpand" />
</StackLayout>
</ContentPage.Content>
</ContentPage>
字符串
1条答案
按热度按时间yhuiod9q1#
你不能用Xamarin.Forms开发VSTO插件,这是一种不兼容的技术。您可能为要创建的XAML选择了错误模板。
Xamarin.Forms基于.NET Standard 2.0/2.1,而VSTO插件需要.NET Framework 4.8,该版本仅适用于Windows。
创建新的XAML视图时,请确保模板与项目中使用的技术相同。混合技术将导致上述误差。您的项目可能正在使用Windows Presentation Foundation(WPF)。