can’t user IHandle<Dictionary<string, object>> #240
Unanswered
wuhl508159280
asked this question in
Q&A
Replies: 1 comment
|
I don't understand what your question is I'm afraid. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I have mainWindown,Usercontrol is in the ContentControl container in mainWindon。
public void Handle(Dictionary<string, object> message) { if (message is null) return; foreach (var v in message) { Cnds.Common.LocalLoggingService.Info("value:" + v.Value.ToString()); switch (v.Key) {case "Content":
Main.Content = v.Value;
break;
}
}
but usercontrol also have IHandle<Dictionary<string, object>>
this error,because i don't send message for usercontrol by Token
All reactions