最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

.net - Community Toolkit TouchBehavior crashes at runtime with Arg_NoDefCtor - Stack Overflow

programmeradmin1浏览0评论

I want to implement touch effect for my app, but I am getting this error

System.Reflection.TargetInvocationException: Arg_TargetInvocationException
 ---> Microsoft.Maui.Controls.Xaml.XamlParseException: Position 50:26. Arg_NoDefCTor, CommunityToolkit.Maui.Behaviors.TouchBehavior
 ---> System.MissingMethodException: Arg_NoDefCTor, CommunityToolkit.Maui.Behaviors.TouchBehavior

my implementation:

xmlns:toolkit=";

<StackLayout
    BackgroundColor="{DynamicResource Primary}"
    Orientation="Horizontal"
    HeightRequest="{OnPlatform iOS=50, Android=60}"
    Margin="0,30,0,0"
    Padding="40,0,0,0">
    <Label Style="{StaticResource TextNormal}"
           Text="{markup:Translate CreateAccountSheetTitle}"
           VerticalTextAlignment="Center"
           TextColor="{DynamicResource TextMenuColor}" />
    <StackLayout.Behaviors>
        <toolkit:TouchBehavior
            x:Name="test" />
    </StackLayout.Behaviors>
</StackLayout>

not really sure what is a problem here, I am not found any similar issues, on empty one project it is working, but my app is multiply project

I also updated CommunityToolKit.Maui to 11.2.0 and also project on 9

发布评论

评论列表(0)

  1. 暂无评论