Hello,
I think it a binding error(ofcause it throw out 'not found (extensions:CommandParameterHelper on Label')
The cause of this issue is a problem with how it is bound.
This error occurs because CommandParameterHelper
is a static class and is not part of this Label internal property. For static class properties, you need to bind them as follows:
<Label x:Name="llll" FontSize="16" Text="{Binding Source={StaticResource extensions:CommandParameterHelper},Path=Parameter}" />
As a supplement, using attached properties as bindings is not a recommended use case. According to the official documentation, it is more convenient to use bindable properties.
Best Regards,
Alec Liu.
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.