Click here to Skip to main content
15,888,351 members
Home / Discussions / WPF
   

WPF

 
QuestionWPF.MDI Pin
columbos1492725-Jan-13 8:37
columbos1492725-Jan-13 8:37 
AnswerRe: WPF.MDI Pin
Abhishek Pant25-Jan-13 9:29
professionalAbhishek Pant25-Jan-13 9:29 
GeneralRe: WPF.MDI Pin
columbos1492725-Jan-13 22:11
columbos1492725-Jan-13 22:11 
GeneralRe: WPF.MDI Pin
Abhishek Pant25-Jan-13 22:33
professionalAbhishek Pant25-Jan-13 22:33 
AnswerRe: WPF.MDI Pin
tram730-Nov-13 5:54
tram730-Nov-13 5:54 
QuestionSilverlight Dispatcher.BeginInvoke not allow thread to run more then one time Pin
Steve Holdorf24-Jan-13 12:13
Steve Holdorf24-Jan-13 12:13 
AnswerRe: Silverlight Dispatcher.BeginInvoke not allow thread to run more then one time Pin
db7uk26-Jan-13 13:11
db7uk26-Jan-13 13:11 
GeneralRe: Silverlight Dispatcher.BeginInvoke not allow thread to run more then one time Pin
Steve Holdorf27-Jan-13 3:19
Steve Holdorf27-Jan-13 3:19 
It is hard for me to cut and paste code because I develop on one network and access the internet on another. But my code looks something like this:

Backgroundworker bw = new Backgroundworker();

public void Constructor ()
{
bw.DoWork += new DoWorkEventHandler(bw_DoWork);

bw.RunWorkerCompleted +=
new RunWorkerCompletedEventHandler(bw_RunWorkerCompleted);

}

private void Update()
{
bw.bw_DoWorkAsync();

while (!autoEvent.WaitOne())
{
Dispatcher.BeginInvoke(timeline.UpdateEvents)
}

}

private void bw_DoWork(Object sender, DoWorkEventArgs e)
{
Dispatcher.beginInvoke(GetFreshData);
// This event is where I refresh the collection data
}

private void bw_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
{
Dispatcher.BeginInvoke(timeline.UpdateEvents)

//updates the timeline control where my refreshed collecton exists

}

Now, I put a break point in the bw_DoWork and bw_RunWorkerComplete which gets hit every time; however, the timeline control refresh never occurs except for the first time.

Thanks,


Steve Holdorf

-- modified 27-Jan-13 19:17pm.
GeneralRe: Silverlight Dispatcher.BeginInvoke not allow thread to run more then one time Pin
db7uk27-Jan-13 12:44
db7uk27-Jan-13 12:44 
GeneralRe: Silverlight Dispatcher.BeginInvoke not allow thread to run more then one time Pin
Steve Holdorf27-Jan-13 13:16
Steve Holdorf27-Jan-13 13:16 
QuestionSilverlight OOB access in Online Pin
Sugu.s23-Jan-13 23:09
Sugu.s23-Jan-13 23:09 
AnswerRe: Silverlight OOB access in Online Pin
Richard MacCutchan24-Jan-13 1:50
mveRichard MacCutchan24-Jan-13 1:50 
GeneralRe: Silverlight OOB access in Online Pin
Sugu.s24-Jan-13 17:31
Sugu.s24-Jan-13 17:31 
GeneralRe: Silverlight OOB access in Online Pin
Richard MacCutchan24-Jan-13 22:41
mveRichard MacCutchan24-Jan-13 22:41 
GeneralRe: Silverlight OOB access in Online Pin
Sugu.s25-Jan-13 0:36
Sugu.s25-Jan-13 0:36 
GeneralRe: Silverlight OOB access in Online Pin
Richard MacCutchan25-Jan-13 1:36
mveRichard MacCutchan25-Jan-13 1:36 
QuestionHow to set the border template a red wavy line , when the control have validation error? Pin
Salam633123-Jan-13 17:01
professionalSalam633123-Jan-13 17:01 
AnswerRe: How to set the border template a red wavy line , when the control have validation error? Pin
Richard MacCutchan23-Jan-13 23:07
mveRichard MacCutchan23-Jan-13 23:07 
GeneralRe: How to set the border template a red wavy line , when the control have validation error? Pin
Salam633124-Jan-13 1:36
professionalSalam633124-Jan-13 1:36 
GeneralRe: How to set the border template a red wavy line , when the control have validation error? Pin
Richard MacCutchan24-Jan-13 1:43
mveRichard MacCutchan24-Jan-13 1:43 
QuestionText box default text Pin
columbos1492722-Jan-13 2:06
columbos1492722-Jan-13 2:06 
AnswerRe: Text box default text Pin
Abhinav S22-Jan-13 3:06
Abhinav S22-Jan-13 3:06 
QuestionConverting WPF windows application to Web Application. Pin
Hema Bairavan21-Jan-13 19:20
Hema Bairavan21-Jan-13 19:20 
AnswerRe: Converting WPF windows application to Web Application. Pin
HariPrasad katakam21-Jan-13 22:31
HariPrasad katakam21-Jan-13 22:31 
GeneralRe: Converting WPF windows application to Web Application. Pin
Pete O'Hanlon21-Jan-13 23:22
mvePete O'Hanlon21-Jan-13 23:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.