Yesterday, I stuck in a bug relative to Xamarin.Behaviors and Xamarin.Forms. The detail is a Exception was thrown after i add these code line in my xaml page:
<b:Interaction.Behaviors>
<b:BehaviorCollection>
<b:EventToCommand EventName="Clicked" Command="{Binding MyCommand}" />
</b:BehaviorCollection>
</b:Interaction.Behaviors>
Although, I've added this line to xaml namespace
xmlns:b="clr-namespace:Xamarin.Behaviors;assembly=Xamarin.Behaviors"
Application got crash with exception: "Could not load file or assembly 'Xamarin.Behaviors' or one of its dependencies. The system cannot find the file specified."
Specially, It's only happened on iOS, android and wp still work well. So, I guess this could be xamarin bug or xamarin studio bug ...
P/S: I checked that Xamarin.Behaviors existed in package folder in my project, and App still not found where that assembly is