See Also: ContentPropertyAttribute Members
XAML processor uses to determine the content property.
Decorating types with ContentPropertyAttribute allows shorter XAML syntax. As
Xamarin.Forms.ContentView has a ContentProperty attribute applied, this XAML is valid:C# Example
<ContentView> <Label Text="Hello, Forms"\> </ContentView>
C# Example
<ContentView>
<ContentView.Content>
<Label Text="Hello, Forms"\>
</ContentView.Content>
</ContentView>