You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.6 KiB
39 lines
1.6 KiB
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="ex_CustomContentView.MainPage"
|
|
xmlns:local="clr-namespace:ex_CustomContentView">
|
|
<VerticalStackLayout
|
|
Padding="30,0"
|
|
Spacing="25">
|
|
<Label Text="NOUT" Style="{StaticResource Headline}"/>
|
|
<local:MyAvatarView
|
|
ImageName="{Binding Artist1.Picture}"
|
|
Title="{Binding Artist1.Name}"
|
|
SubTitle="{Binding Artist1.Instrument}"
|
|
Color="{Binding MainColor}"
|
|
InfoClicked="OnInfoClicked"
|
|
NextClicked="OnNextClicked"
|
|
Tapped="OnTapped"
|
|
NextCommand="{Binding MyNextCommand}"
|
|
NextCommandParameter="D.Joussein"/>
|
|
<local:MyAvatarView
|
|
ImageName="{Binding Artist2.Picture}"
|
|
Title="{Binding Artist2.Name}"
|
|
SubTitle="{Binding Artist2.Instrument}"
|
|
Color="{Binding MainColor}"
|
|
InfoClicked="OnInfoClicked"
|
|
NextClicked="OnNextClicked"
|
|
Tapped="OnTapped"/>
|
|
<local:MyAvatarView
|
|
ImageName="{Binding Artist3.Picture}"
|
|
Title="{Binding Artist3.Name}"
|
|
SubTitle="{Binding Artist3.Instrument}"
|
|
Color="{Binding MainColor}"
|
|
InfoClicked="OnInfoClicked"
|
|
NextClicked="OnNextClicked"
|
|
Tapped="OnTapped"/>
|
|
<Image Source="nout_live_album.png" WidthRequest="100"/>
|
|
</VerticalStackLayout>
|
|
</ContentPage>
|