私のxamlファイルには、次のものがあります。
<DataTemplate DataType="{x:Type Configuration:Drivers}">
<ItemsControl ItemsSource="{Binding Cars}" FontWeight="Normal" />
<DataTemplate>
<DataTemplate DataType="{x:Type Configuration:Car}">
<UniformGrid HorizontalAlignment="Stretch" Margin="5,1,5,2" Columns="2">
<CheckBox IsChecked="{Binding Enabled, UpdateSourceTrigger=PropertyChanged}"/>
<CheckBox Visibility="{Binding SaveImage, UpdateSourceTrigger=PropertyChanged}"/>
</UniformGrid>
</DataTemplate>
車ごとに、次のものがあります。 Enabled プロパティがありますが、SaveImage プロパティはありません。
Car
{
public bool Enabled {}
}
「SaveImage」はグローバルに設定されています。それをバインドする方法がわかりません: DataTemplate 内で SaveImage を bool しますか?