NullReferenceException returned by Messenger.Default.Send("any string");
In my app:
Messenger.Default.Send("Search Returne开发者_如何学God");
message is 'NullReferenceException', no inner exception.
???
Make sure you are registering for the message in your initialization path.
Messenger.Default.Register<string>(this, YourHandlerMethod)
精彩评论