Private Sub btnStartThread_Click(sender As System.Object, e As System.Windows.RoutedEventArgs)
Dim thread As System.Threading.Thread = New System.Threading.Thread(AddressOf ThreadStart)
thread.Start()
End Sub
Private Sub ThreadStart()
'*** Process in Thread
'*** Process in Thread
'*** Process in Thread
'*** Process in Thread
End Sub