gpt4 book ai didi

c# - 未找到标记扩展

转载 作者:太空宇宙 更新时间:2023-11-03 22:37:14 25 4
gpt4 key购买 nike

我正在研究 Microsoft 页面中的文档,因为我愿意学习 xamarin.forms。每当引入新主题时,我都会尝试编写一个小应用程序来测试我刚刚学到的知识。在试验 xaml 标记扩展时,我发现 Microsoft 文档中显示的示例之一对我不起作用,即使我从网站复制它并将其粘贴到我的 vs 项目中也是如此。

C#代码是这样的

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;

namespace XamarinLab
{
public partial class MainPage : ContentPage
{
public MainPage()
{
InitializeComponent();
}
}

public class HslColorExtension : IMarkupExtension<Color>
{
public double H { set; get; }

public double S { set; get; }

public double L { set; get; }

public double A { set; get; } = 1.0;

public Color ProvideValue(IServiceProvider serviceProvider)
{
return Color.FromHsla(H, S, L, A);
}

object IMarkupExtension.ProvideValue(IServiceProvider serviceProvider)
{
return (this as IMarkupExtension<Color>).ProvideValue(serviceProvider);
}
}
}

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"
xmlns:local="clr-namespace:XamarinLab"
x:Class="XamarinLab.MainPage">

<ContentPage.Resources>
<ResourceDictionary>
<Style TargetType="BoxView">
<Setter Property="WidthRequest" Value="80" />
<Setter Property="HeightRequest" Value="80" />
<Setter Property="HorizontalOptions" Value="Center" />
<Setter Property="VerticalOptions" Value="CenterAndExpand" />
</Style>
</ResourceDictionary>
</ContentPage.Resources>

<StackLayout>
<BoxView>
<BoxView.Color>
<local:HslColorExtension H="0" S="1" L="0.5" A="1" />
</BoxView.Color>
</BoxView>

<BoxView>
<BoxView.Color>
<local:HslColor H="0.33" S="1" L="0.5" />
</BoxView.Color>
</BoxView>

<BoxView Color="{local:HslColorExtension H=0.67, S=1, L=0.5}" />

<BoxView Color="{local:HslColor H=0, S=0, L=0.5}" />

<BoxView Color="{local:HslColor A=0.5}" />
</StackLayout>

</ContentPage>

当我尝试运行该应用程序时,弹出以下异常

markup extension not found for local:HslColorExtension

我复制的示例位于:https://learn.microsoft.com/it-it/xamarin/xamarin-forms/xaml/markup-extensions/creating

这是第一个例子,在此先感谢您的帮助。

最佳答案

您需要创建一个新的文件类,名为 HslColorExtension在你的项目中,而不是在 MainPage 文件中创建一个类,它不会识别命名空间或创建的类。

只需将该部分移动到一个新文件中,您就应该全部设置完毕。

您可以查看 Offical Sample , 查看结构、文件以及如何设置。

关于c# - 未找到标记扩展,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54400512/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com