1
DataGridにコントロール(コンボボックス、コードビハインドでSelectionChangedイベントを持つ)を持っている場合。 したがって、_SelectionChanged-eventから、グリッドのコンテナセルの参照を取得できますか? Plzヘルプ!セル参照を取得する方法
<DataGridTemplateColumn Width="100">
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding Path=QuotationItemCode}"/>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
<DataGridTemplateColumn.CellEditingTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<ComboBox Height="22" Width="100" Name="cmbQuotationItemCode"
ItemsSource="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}, Path=DataContext.vwProducts}"
DisplayMemberPath="itM_Code"
SelectedValuePath ="itM_Id"
Tag="{Binding RelativeSource={RelativeSource Self}, Path=SelectedItem.Row[2]}"
SelectedValue="{Binding Path=QuotationItemId}"
Text="{Binding Path=QuotationItemCode}" SelectionChanged="cmbQuotationItemCode_SelectionChanged">
</ComboBox>
<TextBlock Name="txtQuotationItemDescription" Text="{Binding Path=DetailDescription, IsAsync=True}" Height="19"></TextBlock>
</StackPanel>
</DataTemplate>
</DataGridTemplateColumn.CellEditingTemplate>
</DataGridTemplateColumn>