diff --git a/ch03_DataBinding/ex_CustomContentView/MainPage.xaml b/ch03_DataBinding/ex_CustomContentView/MainPage.xaml
index 950169b..d299c70 100644
--- a/ch03_DataBinding/ex_CustomContentView/MainPage.xaml
+++ b/ch03_DataBinding/ex_CustomContentView/MainPage.xaml
@@ -15,6 +15,10 @@
InfoClicked="OnInfoClicked"
NextClicked="OnNextClicked"
Tapped="OnTapped"
+ TapCommand="{Binding MyTapCommand}"
+ TapCommandParameter="{Binding Source={RelativeSource Self}}"
+ InfoCommand="{Binding MyInfoCommand}"
+ InfoCommandParameter="{Binding Artist1}"
NextCommand="{Binding MyNextCommand}"
NextCommandParameter="D.Joussein"/>
+ Tapped="OnTapped"
+ TapCommand="{Binding MyTapCommand}"
+ TapCommandParameter="{Binding Source={RelativeSource Self}}"
+ InfoCommand="{Binding MyInfoCommand}"
+ InfoCommandParameter="{Binding Artist2}"
+ NextCommand="{Binding MyNextCommand}"
+ NextCommandParameter="R.Rinaudo"/>
+ Tapped="OnTapped"
+ TapCommand="{Binding MyTapCommand}"
+ TapCommandParameter="{Binding Source={RelativeSource Self}}"
+ InfoCommand="{Binding MyInfoCommand}"
+ InfoCommandParameter="{Binding Artist3}"
+ NextCommand="{Binding MyNextCommand}"
+ NextCommandParameter="B.Lafuente"/>
diff --git a/ch03_DataBinding/ex_CustomContentView/MainPage.xaml.cs b/ch03_DataBinding/ex_CustomContentView/MainPage.xaml.cs
index ea45644..659f1dc 100644
--- a/ch03_DataBinding/ex_CustomContentView/MainPage.xaml.cs
+++ b/ch03_DataBinding/ex_CustomContentView/MainPage.xaml.cs
@@ -58,12 +58,22 @@ public partial class MainPage : ContentPage
}
public ICommand MyNextCommand { get; set; }
+ public ICommand MyInfoCommand { get; set; }
+ public ICommand MyTapCommand { get; set; }
private void InitCommands()
{
MyNextCommand = new Command