I\'m trying to convert the C# code from this webpage to VB.
Everything seems to have converted pretty much fine using an online converter tool, but then I reach the foll
AddHandler fadeOutAnimation.Completed, Sub()
OnFadeOutAnimationCompleted(d, hostGrid, grid)
End Sub
It's been a while, but since you're not using the parameters in the Event Handler I don't think you need to include them (because of Relaxed Delegate Conversion). If so, it'll look more like:
AddHandler fadeOutAnimation.Completed, Sub(sender as object, args as EventArgs)
OnFadeOutAnimationCompleted(d, hostGrid, grid)
End Sub
They keywork you have to look for is "lambda expression".
This is a lambda expression. Let me see how to do this in VB...
AddHandler fadeOutAnimation.Completed, Sub(sender, e) _
(OnFadeOutAnimationCompleted(d, hostGrid, grid))