I have some storyboards in XAML (WPF Project) and I´m calling them from the VB code with this:
Dim ServiceOff As Storyboard = DirectCast(FindResource("ServiceStopped"), Storyboard)
ServiceOff.Begin()
I´m getting the following error when trying to build:
Overload resolution failed because no accessible 'Begin' accepts this number of arguments.
Any ideas?