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

Popular posts from this blog

unity3d - Rotate an object to face an opposite direction -

angular - Is it possible to get native element for formControl? -

javascript - Why jQuery Select box change event is now working? -