Click here to Skip to main content
15,885,278 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Public Shared Function CreateHyperLink(ByVal sURI As String, ByVal sDescription As String, ByVal ClickMethod As EventHandler(Of System.Windows.RoutedEventArgs)) As Hyperlink
     Dim hyper As New Hyperlink()
     hyper.Inlines.Add(sDescription)
     hyper.NavigateUri = New System.Uri(sURI)
     AddHandler hyper.Click, ClickMethod
     Return hyper
 End Function


The above code creates a hyperlink function.
But..

AddHandler hyper.Click, <<< ClickMethod >>>

'ClickMethod' is the error.

Error:

Value of type 'System.EventHandler (Of System.Windows.RoutedEventArgs)' cannot be converted to 'System.Windows.RoutedEventHandler'


How Can Fix It?
Posted
Updated 27-Aug-10 19:24pm
v2

1 solution

Looks like you need to pass in a RoutedEventHandler, not what you're passing.
 
Share this answer
 
Comments
rus204 28-Aug-10 2:26am    
like a ...

AddHandler hyper.Click, New System.Windows.RoutedEventHandler(ClickMethod)
or
AddHandler hyper.Click, New System.Windows.RoutedEventHandler(AddressOf ClickMethod) ?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900