Hello,
I trying to use RadEventToCommandBehavior at page level to binding a Appearing Event to a command in my ViewModel, but it doesn't work.
[Page.XAML]
<ContentPage.Behaviors>
<telerik:RadEventToCommandBehavior Command="{Binding AppearingCommand}" EventName="Appearing" />
</ContentPage.Behaviors>
[ViewModel]
[RelayCommand]
public async Task AppearingCommand()
{
await LoadData();
}