I have the below example code for a Windows Phone 7 application, and I am trying to convert it to VB.Net as a starting point. The assignments like this:
Loaded +
The Loaded event handler is defined in the C# code you posted using a lambda expression. I suppose most VB.NET-C# converters don't handle those very well, since they are relatively new. Try this:
AddHandler Loaded, Sub() 'Pass the Loaded event parameters, I cannot see them in your code
'The code inside the big block
End Sub
You don't need to call RemoveHandler (read comments below).