13 lines
422 B
VB.net
13 lines
422 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.BTLStructure.SelPart = Map.refProjectVM.BTLStructure.SelPart
|
|
End If
|
|
End If
|
|
End Sub
|
|
|
|
End Class
|