13 lines
432 B
VB.net
13 lines
432 B
VB.net
Public Class PartListV
|
|
|
|
Private Sub PartList_PreviewMouseDown(sender As Object, e As MouseButtonEventArgs)
|
|
If TypeOf sender Is DataGridRow Then
|
|
Dim Row As DataGridRow = DirectCast(sender, DataGridRow)
|
|
If Not IsNothing(Row) AndAlso Row.IsSelected Then
|
|
Map.refProjectVM.BTLStructureVM.SelBTLPart = Map.refProjectVM.BTLStructureVM.SelBTLPart
|
|
End If
|
|
End If
|
|
End Sub
|
|
|
|
End Class
|