1
を更新し、コレクションにトグルされます。トグルボタンは、私はこのようなジョブを示すデータグリッドを持って
最初の行をリフレッシュすると自動的に切り替わります。
私はこれが私のxaml
である理由...
を把握することはできません。
<DataGrid Grid.Row="1"
ItemsSource="{Binding Path=JobCollectionView}"
SelectedItem="{Binding Path=SelectedEntry,
UpdateSourceTrigger=PropertyChanged,
Mode=TwoWay}"
IsReadOnly="True"
x:Name="dataGrid"
AutoGenerateColumns="False"
CanUserAddRows="False"
SelectionUnit="FullRow"
SelectionMode="Single"
ScrollViewer.HorizontalScrollBarVisibility="Disabled"
CanUserResizeColumns="True"
VerticalContentAlignment="Center">
[...]>
<DataGridTemplateColumn CellStyle="{StaticResource DataGridNonFocusableCell}">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<ToggleButton IsChecked="{Binding RelativeSource={RelativeSource AncestorType=DataGridRow},
Path=DetailsVisibility,
Converter={StaticResource BoolToVisConverter},
Mode=TwoWay,
FallbackValue=False}"
Height="20"
Width="20" />
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
[...]/>