c# - DXmessage box Shows error while runing inside the thread? -
dxmessagebox shows error while running inside thread shows following error "the calling thread must sta, because many ui components require this."
dxmessagebox.show("no data selected parameters", messagetitle);
if windows message box work fine me
try invoke code dispatcher
application.current.dispatcher.begininvoke( dispatcherpriority.send, new action(delegate() { //your code }));
Comments
Post a Comment