Possible Duplicate:
Equivalent of DoEvent() in WPF
i ask these question few days before but did not get much helpful comment as im totally new in WPF and no idea about threading however i have to deliver my task today and need to do these ASAP, Last time im using windows form and my function using DoEvent(); since im moved my program to WPF and do Event its not support anymore i need to convert these function
P.S: These function its to sending data to com port and Update UI
private void Send(byte[] cmd)
{
bWaiting = true;
MyResp = new byte[0];
WriteOnPort(cmd);
while (bWaiting == true) // here is a problem
{
System.Windows.Forms.Application.DoEvents(); // here is a problem
System.Threading.Thread.Sleep(15);
}
}
I really need to finish these by today and have no idea how to work it out any help would be great
MyRespto be populated inWriteOnPort?? – sa_ddam213 Jan 29 at 1:58DoEventseven though it's really a bad idea? Did you look up theDispatcher? I am not really sure what it is what exactly your question is... – PhoenixReborn Jan 29 at 1:59BackgroundWorkerthen where is that code? Is this code in theDoWork? If the other code did not work then why did it not work? What exactly was wrong with it? Asking the exact same question is not going to get you many different answers. – PhoenixReborn Jan 29 at 2:16