telrik カバーフローがあり、タイルのタイプはユーザー コントロールである InfoPageView です。親でイベントをトリガーしたい InfoPageView ユーザー コントロール内にボタンがあります。この投稿でソリューションを実装してみました: Silverlight の UserControl 内のボタンの Click イベントを公開しますが、親クラスで子イベントを取得できません。これを行う別の方法はありますか?
<telerikNavigation:RadCoverFlow x:Name="CoverFlow" Grid.Row="0" OffsetY="0" ItemsSource="{Binding Covers}" HorizontalAlignment="Center"
DistanceBetweenItems="75" DistanceFromSelectedItem="25" IsReflectionEnabled="False" ItemScale="0.5" Margin="0,0,0,0" Width="785" Height="486">
<telerikNavigation:RadCoverFlow.ItemTemplate>
<DataTemplate>
<local:InfoPageView Name="Custinfopage" Width="390" Height="390" />
</DataTemplate>
</telerikNavigation:RadCoverFlow.ItemTemplate>
</telerikNavigation:RadCoverFlow>