The answer is: MVVM. Don't use the event registration in code-behind rather have a command be invoked in the ViewModel. First, Instead of binding to a Data object, bind to a ViewModel (or a ViewModel representing a single list item if you're in a list). Then instead of using the Click event, have your ViewModel expose a Command that can be invoke directly on the databound VM.
Here's a simplified example from my United Nations News OSS WP7 app: (XAML, C#)
<DataTemplate x:Key="ArticleItemDataTemplate">
<StackPanel>
<toolkit:ContextMenuService.ContextMenu>
<toolkit:ContextMenu>
<toolkit:MenuItem Command="{Binding NavigateToArticle}" Header="read article"/>
<toolkit:MenuItem Command="{Binding ShareViaEmail}" Header="share via email"/>
<toolkit:MenuItem Command="{Binding ShareOnFacebook}" Header="share on facebook"/>
<toolkit:MenuItem Command="{Binding ShareOnTwitter}" Header="share on twitter"/>
</toolkit:ContextMenu>
</toolkit:ContextMenuService.ContextMenu>
<TextBlockText="{Binding Title}">
</StackPanel>
</DataTemplate>
public ICommand ShareOnTwitter
{
get
{
return new RelayCommand(() =>
IoC.Get<ISocialShareService>().ShareOnTwitter(ShareableOnSocialNetwroks));
}
}
public ICommand ShareOnFacebook
{
get
{
return new RelayCommand(() =>
IoC.Get<ISocialShareService>().ShareOnFacebook(ShareableOnSocialNetwroks));
}
}
public ICommand ShareViaEmail
{
get
{
return new RelayCommand(() =>
IoC.Get<ISocialShareService>().ShareViaEmail(ShareableOnSocialNetwroks));
}
}
And here's another simplified sample of that same idea used in my Neurons WP7 OSS project: (XAML, C#)
<DataTemplate x:Key="YouTubeVideoItem">
<Grid>
<Button >
<toolkit:ContextMenuService.ContextMenu>
<toolkit:ContextMenu IsZoomEnabled="False">
<toolkit:MenuItem Command="{Binding NavigateToVideo}" Header="play video" />
<toolkit:MenuItem Command="{Binding ViewInBrowser}" Header="open in browser" />
<toolkit:MenuItem Command="{Binding SendInEmail}" Header="share via email" />
<toolkit:MenuItem Command="{Binding FacebookInBrowser}" Header="share on facebook" />
<toolkit:MenuItem Command="{Binding TweetInBrowser}" Header="share on twitter" />
</toolkit:ContextMenu>
</toolkit:ContextMenuService.ContextMenu>
<Custom:Interaction.Triggers>
<Custom:EventTrigger EventName="Click">
<GalaSoft_MvvmLight_Command:EventToCommand Command="{Binding NavigateToVideo}"/>
</Custom:EventTrigger>
</Custom:Interaction.Triggers>
<StackPanel Orientation="Horizontal">
<Image Height="90" Source="{Binding ImageUrl}" />
<TextBlock Width="271" Text="{Binding Title}" />
</StackPanel>
</Button>
</Grid>
</DataTemplate>
public ICommand ViewInBrowser
{
get
{
return new RelayCommand(() =>
TaskInvoker.OpenWebBrowser(this.ExternalLink.OriginalString)
);
}
}
public ICommand TweetInBrowser
{
get
{
return new RelayCommand(() =>
IoC.Get<IMessenger>().Send(new NavigateToMessage(PageSources.WebBrowser, TwitterUri)));
}
}
public ICommand FacebookInBrowser
{
get
{
return new RelayCommand(() =>
IoC.Get<IMessenger>().Send(new NavigateToMessage(PageSources.WebBrowser, FacebookUri)));
}
}