>>Hongliang さん
おお、ありがとうございました!
ItemContainerStyleにスタイルを定義してIsEnabledにデータをバインドしたら思っている動作になりました!
ItemTemplate がタブアイテムの中身で ItemContainerStyle がタブアイテムのスタイルなんですね、何となく理解できました。
ItemsSource はタブのコンテンツ部分かな?
以下、変更点
===================================
<TabControl
IsSynchronizedWithCurrentItem="True"
ItemsSource="{Binding}"
ItemTemplate="{StaticResource TabItemTemplate}"
/>
↓
<TabControl
IsSynchronizedWithCurrentItem="True"
ItemsSource="{Binding}"
ItemTemplate="{StaticResource TabItemTemplate}"
ItemContainerStyle="{StaticResource TabItemStyle}"
/>
追加
<Style x:Key="TabItemStyle" TargetType="TabItem">
<Setter Property="IsEnabled" Value="{Binding Enabled}" />
</Style>
===================================
Xamlむずかしいです、精進して頑張ります。
ありがとうございました。