Looking for the WPF equivalent of the following:
<controls:TabItem Foreground="Black" Header="{Binding Path=Home.Header}" Content="{Binding **Path=Home**, Mode=OneWay}" />
Home is:
public ViewModelBase Home
{
get
{
return this._homeViewModel;
}
}
Inside my ViewModel, I am unable to bind the xaml to the _homeViewModel in Silverlight.
Any ideas ?