Tagged Questions
The dispatchertimer tag has no wiki summary.
7
votes
2answers
1k views
DispatcherTimer and UI refresh limits in C# silverlight
Again I apologize for a question that might be simple to all of you. I have a limited understanding of what goes behind the scenes in Silverlight.
I have a charting app (Visiblox) that I use as a ...
5
votes
1answer
82 views
DispatcherTimer not firing in WPF Application
I am trying to understand why the DispatcherTimer contained within SingletonWithTimer is not firing in the following WPF application. I've been researching this for a couple of days and cannot seem ...
4
votes
3answers
138 views
Performance for Timer vs DispatcherTimer
I don't have a specific scenario in mind, but this question just crossed my mind while I was thinking of scenarios where I may want to use a Timer over a DispatcherTimer.
In the scenario where I have ...
4
votes
2answers
245 views
Will this Timer be released from memory?
Consider this pair of functions in C#:
void func1() {
DispatcherTimer tmr = new DispatcherTimer();
tmr.Interval = TimeSpan.FromSeconds(5);
tmr.Tick += func2;
tmr.Start();
}
void ...
3
votes
4answers
1k views
DispatcherTimer not firing Tick event
I have a DispatcherTimer i have initialised like so:
static DispatcherTimer _timer = new DispatcherTimer();
static void Main()
{
_timer.Interval = new TimeSpan(0, 0, 5);
_timer.Tick += new ...
3
votes
1answer
381 views
Problem with WPF Application and slow GUI response
I've been analyzing a WPF application which basically fetch data from a server and display the data in the GUI.
This code is not mine, and the application has a problem related with slow response ...
3
votes
3answers
3k views
DispatcherTimer eating up CPU over time causing WPF visual not rendering properly
I have a WPF app that uses DispatcherTimer to update a clock tick.
However, after my application has been running for approx 6 hours the clocks hands angles no longer change. I have verified that the ...
2
votes
1answer
249 views
idle state detection silverlight 4 application
What's the best way to detect idle state for a silverlight application? I have read quite a few articles on the net by now and usually they are either for wpf/mobile apps etc.
I have created a ...
2
votes
2answers
2k views
BackgroundWorker or (Dispatcher)operation already completed when doing ReportProgress
I use DispatcherTimer because I need to do an operation every couple of minutes. Inside this I call a BackgroundWorker to do my work, and then use the dispatcher attached to the timer to update my UI. ...
1
vote
2answers
33 views
stopclock implementation in wp7
In my wp7.5 app, i have a block where i need to show a stopclock (say 30,29,28...1,0). I tried various implementations to achieve this using DispatchTimer and Timer classes, but none of them solved my ...
1
vote
1answer
30 views
Timer and saving its state
I am building a windows phone application (basically its a game but I am not using XNA, Silverlight was enough). The graphics are moving based on a DispatcherTimer. What I want to do is basically stop ...
1
vote
1answer
60 views
How can I set the priority of a DispatcherTimer?
I am creating an app for Windows Phone 7 using Silverlight in C#.
I have found many references to the DispatcherTimer(DispatcherPriority) overload, but I cannot set this in my code (e.g. timer = new ...
1
vote
2answers
102 views
Repeating BackgroundWorker task using DistpatcherTimer
I'm trying to figure out the best way to approach this.
I have a BackgroundWorker which is being used to make a socket connection on a timer.
Public Shared AllUsersWorker As New BackgroundWorker
...
1
vote
3answers
159 views
Stopping DispatcherTimer in its own anonymous Tick event handler
Is it safe to do something like this:
private void MyFunction()
{
DispatcherTimer timer = new DispatcherTimer();
timer.Interval = new TimeSpan(0, 0, 1);
timer.Tick += (object sender, ...
1
vote
4answers
88 views
DispatchTimer - Prevent the tick event to be triggered if the previous tick is still running
In a Silverlight app, I have a block of code that has to run every 500ms. I am planning o use a DispatcherTimer to achieve this (see code below).
DispatcherTimer dt = new DispatcherTimer();
...
1
vote
1answer
371 views
DispatcherTimer behavior in WP7 application
I am writing an audio recording application for WP7. I have a DispatcherTimer object in my ViewModel class, that when the recording is happening, counts the elapsed seconds to show the length of the ...
1
vote
1answer
127 views
DispatcherTimer Keeps Firing After Stop() in Win 2k8 SP2
I got an interesting bug report today.
I have a DispatcherTimer whose Tick calls an EventHandler which contains a Stop() method call. This stops the timer on the platforms we use in development ...
1
vote
2answers
364 views
Periodically update silverlight view with MVVM
I am trying to use MVVM in Silverlight, but I am quite new to it so I am not quite sure on some things. I have a silverlight page which displays the progress of some server side operation. The current ...
1
vote
2answers
1k views
Getting Elapsed Time with DispatchTimer to 1 millisecond accuracy
I'm trying to measure the elapsed time in milliseconds between keypress events using a dispatch timer but when declaring a dispatch timer to have an interval of 1 millisecond and then establishing the ...
1
vote
1answer
303 views
WPF control retained in memory due to DispatcherTimer EventHandler
Yo
One of my WPF control is retained in memory due to one of its private member. The incriminate member is a DispatcherTimer and the retention is because of the Tick event handler. (This leak was ...
1
vote
1answer
418 views
Using dispatchertimer in combination with an asynchroneous call
We have an issue in our Silverlight application which uses WCF and Entity Framework, where we need to trap the event whenever a user shuts down the application by closing the web page or the browser ...
0
votes
0answers
17 views
select listbox items in foreach loop using DispatchTimer or BackgroundWorker
I have a situation where I have to loop through a set of items in a listbox and perform some action with each item at a time. I have to highlight the current item I am working with (set selectedindex ...
0
votes
1answer
45 views
Idle time using DispatcherTimer - Not Working
I have an application all done in WPF, using MvvM/Prism/Unity and Remote as datasource.
I need a basic thing that on win forms is really easy, just check if the app is iddle after few minutes , and ...
0
votes
1answer
38 views
Multiple DispatcherTimers with one tick eventhandler
I'm working on a project that will require me to react to 5 separate events generated by an external device and then do something after a certain delay. The events will normally happen one at a time ...
0
votes
1answer
61 views
DispatcherTimer not updating with AdControl running
I have a simple app that I am creating with a countdown timer that uses a DispatcherTimer for the time base. I have an event handler setup for On_Tick of the DispatcherTimer (set for 1 sec interval). ...
0
votes
1answer
136 views
creating a delay on silverlight
I am making a turn based silverlight game(Cards game). and I want to delay between turns.
I've tried the Thread.Sleep, but it halts my UI.
I've tried to use DispatcherTimer, but it acts funny. ...
0
votes
5answers
58 views
enumerate through a list or dict every x seconds with timer or dispatchertimer in C#
say i have a dictionary with 3 value/key pairs.
private void someMethod()
{
Dictionary<string, int> d = new Dictionary<string, int>();
d.Add("cat", 22);
d.Add("dog", 14);
...
0
votes
1answer
96 views
Timer Concept in wp7?
I am using this Timer . but this timer not run perfectly.
Example:
DispatcherTimer starting_intervel = new DispatcherTimer();
starting_intervel.Interval = new TimeSpan(0, 0, 0, 0, 1500);
...
0
votes
1answer
73 views
Maintaining 60 elements in a observablecollection
Hi I have a ObservableCollection getting data in every minute. When it reaches an hour, I would like to clear the first item and move all the items up then adding the new item, thus maintaining it at ...
0
votes
1answer
93 views
two dispatchertimer events at the same time?
i have a wpf app that is updating date/time in one dispatchertimer, another is for a mp3 player timer that tracks time and slidebar for playing time. is it possible to have 2 dispatchertimer's ...
0
votes
1answer
435 views
DispatcherTimer and WebClient.DownloadStringAsync throw “WebClient does not support concurrent I/O operations” exception
I need help with this code
WebClient client = new WebClient();
string url = "http://someUrl.com"
DispatcherTimer timer = new DispatcherTimer();
timer.Interval = ...
0
votes
1answer
323 views
DispatcherTimer and high CPU load
Hey, I have an WPF application and using DispatcherTimer to fire an event every minute.
I run my app and the cpu load jumps to 100%. I tried to compile an app without using a timer and cpu load was ...
0
votes
3answers
430 views
How do I add a delay after a count down timer
I am using a DispatcherTimer to perform a count down before triggering the release on a camera. The UpdateCountdown method is used to change the image displayed to the user before the camera fires. ...