Create an Attached Dependency Property that you can bind to the RichTextBlock from the ViewModel, such as:
public static class MyStaticClass
{
public static readonly DependencyProperty IsVisible = DependencyProperty.RegisterAttached("IsVisible", typeof(bool), typeof(MyStaticClass), new PropertyMetadata(false, OnVisibilityChanged));
private static void OnVisibilityChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
var rtb = (RichTextBlock)d;
var isVisible = (bool)e.NewValue;
// Do something to rtb.Inlines
}
}
With this property, you can bind it to the ViewModel's IsSelected property:
<FlipView ItemsSource="{Binding SomeList}" SelectedItem="{Binding SelectedVM, Mode=TwoWay}">
<FlipView.ItemTemplate>
<DataTemplate>
<RichTextBlock ns:MyStaticClass.IsVisible="{Binding IsSelected}" />
</DataTemplate>
</FlipView.ItemTemplate>
</FlipView>
When the SelectedItem is changed, you can set IsSelected on the child View Model to true, and that triggers the MyStaticClass.OnVisibilityChanged event.
flipView.GetDescendantsOfType<RichTextBlock>().First(rtb => rtb.DataContext == flipView.SelectedItem);which even involves a third party library. I know there has to be a better way! – xster Oct 4 '12 at 2:14