DispatcherTimer is a .Net class that provides timers that are integrated into the Dispatcher queue which is processed at a specified interval of time and at a specified priority.
-2
votes
1answer
45 views
WPF Current time without using dispatcher
I'd like to know is there any other option to show current time without using DispatcherTimer?
Unfortunately app need's to run in slow PC's and DispatcherTimer continuously increasing memory usage. I ...
0
votes
0answers
25 views
DispatcherTimer in a Custom Control does not Fire
In the following code displayTimer would not start when the AlarmClockControl is instantiated on a Window and the project is run. Any idea of why?
Thanks
What else can I add? Why is SO irritates by ...
0
votes
2answers
64 views
Auto close WPF application
I have a need to shutdown my application if the user haven't used it for certain period of time.
The method I use now works great on a single window but i can't seem to make it global.
this is how i ...
1
vote
2answers
86 views
Show messagebox if datetime is reached?
I need help with DateTime.
I want my application to check if DateTime end is up and gives me a messagebox.
How do I write that?
Code:
private void listjob()
{
DispatcherTimer dispatcherTimer = ...
0
votes
3answers
96 views
namespace name 'DispatcherTimer' could not be found
I am trying to use a dispatch timer, but my c# app can't find the namespace. This is the error:
The type or namespace name 'DispatcherTimer' could not be found (are you missing a using directive ...
0
votes
4answers
117 views
C# UI freezing when serial port attempts to connect
I have a question concerning why my C# interface is freezing during a serial port connection. If I connect to a serial port that is valid (my device which sends the number of bytes I am expecting) the ...
0
votes
1answer
121 views
Dispatcher Timer - Windows Phone
I'm building a small app on my windows phone, and I'm having trouble with the dispatcher timer.
Everytime the page is loaded, the dispatcher is being ran over another time.
Basically I got a ...
1
vote
1answer
83 views
more than one, independent dispatchertimer?
I want to create few timers, counting down x time, working independly, updating time in textBlock, and doing something when finished.
So I wrote:
private DispatcherTimer d1, blueTimer;
private void ...
0
votes
0answers
29 views
How to user DispatcherTime Control in silver light?
I am new silver light application. Which i need to at every frequent interval i want to store Recorded Audio.
silver light code:
public void DAudioTimer_Tick(object sender, EventArgs e)
{
...
1
vote
1answer
699 views
how to make DispatcherTimer events smoother in WPF?
In my WPF application, the user presses a button to start a 3D model rotating smoothly, and lets up on the button to stop the rotation.
To do this, I create a DispatcherTimer:
DispatcherTimer timer ...
2
votes
1answer
104 views
Why does DispatcherTimer cease to fire after some random time?
I have setup DispatchTimer correctly to fire every second-
OneSecondChecker = new DispatcherTimer();
OneSecondChecker.Tick += new EventHandler(OneSecondChecker_Tick);
OneSecondChecker.Interval = new ...
0
votes
1answer
67 views
Timer in Global.asax
I would like to start a timer when the application is started in IIS.
Do you think that the best place is in Application_Start in Global.asax?
Thank you very much.
2
votes
1answer
108 views
How to pause a video and play it from another position in WPF and C#
I am trying to pause a video on a specific location in my test code, and trying to start it from a totally different position. It eventually did start from the other point but when it pauses again, it ...
0
votes
0answers
72 views
Decreasing timer interval in WP7 Silverlight
I'm using DispatcherTimer in WP7 Silverlight to apply a simple translation animation on the menu.
Now, if I decrease the step length, the translation looks smooth, but slow. If I increase the step ...
1
vote
0answers
190 views
WPF MVVM Canvas UIElement has strange Binding if the ViewModels have identical position properties
A view model binds to the wrong UIElement if it has the same properties of another view model in the collection.
I have a Canvas control that represents a matrix and this canvas is bound to a ...
-1
votes
1answer
410 views
dispose or kill Dispatcher timer object and Accessing dispatcher timer object
Question 1:
hi, i would like to know is there a way by which i can dispose or kill the object of dispatcher timer
and create a new object of same name ?
Qurstion 2:
and can i access the ...
2
votes
2answers
688 views
send a extra argument in Dispatchertimer.Tick event
my question is how can i send some arguments in Dispatchertimer.Tick event
here is the code: what i wanted to is receive a integer value at dispatcheTimer_Tick
dispatcherTimer.Tick += new ...
1
vote
2answers
309 views
trigger event after X seconds
I am developing an app for windows phone. My question is how can I trigger an event after 2 seconds?
Private Sub btn1_Click(sender As Object, e As RoutedEventArgs) Handles btn1.Click
Dim ...
0
votes
1answer
202 views
get a value Returned from a Dispatcher timer Event handler?
how do i get a value returned from a event handler at a calling position??
what i would like to do is something like this
"" int a = timer.Elapsed += new ElapsedEventHandler((sender, ...
0
votes
2answers
153 views
c# dispatcher timer and System.TImers.Timer firing too early
I read on msdn that although timers cannot guarantee to fire at the exact interval (in my case 1 second) they will not fire before the interval.
The timers on one pc is working fine (Windows 7) while ...
2
votes
2answers
319 views
Countdown not working (Using Stopwatch Class + Dispatchertimer)
I am initiating the Hours, Minutes and Seconds
And then Converting it to total milliseconds.
And then what i am doing is subtracting the Total MilliSeconds from Elapsed MilliSeconds
i.e elms = cms ...
2
votes
2answers
215 views
Getting incorrect timings while execution using dispatcher timer + stopwatch using VB.NET
Here I initialize the time variables to 0 and use StopWatch to count milliseconds and DispatcherTimer to update UI
Imports System.Threading
Imports Windows.UI.Xaml
Dim dt As DispatcherTimer = New ...
1
vote
1answer
627 views
Async friendly DispatcherTimer wrapper/subclass
I have a DispatcherTimer running in my code that fire every 30 seconds to update system status from the server. The timer fires in the client even if I'm debugging my server code so if I've been ...
0
votes
1answer
203 views
Can't Stop The DispacherTimer
I am writting some code in a wpf and I have a mouse that performs a click if the cursor stands still for a few seconds..I want to stop clicking if I open a new wpf window that i created...But it seems ...
0
votes
1answer
431 views
Dispatcher Timer freezing the WPF
I am designing a 3 DOF control application for AR Drone (quad-rotor UAV) .. i am using multiple PID controllers to control the UAV .. these controllers are implemented by using dispatcher timer class ...
1
vote
0answers
228 views
CompositionTarget.Rendering & DispatcherTimer
Can CompositionTarget.Rendering & DispatcherTimer's not co-exist? I have a control that is updating by registering to CompositionTarget.Rendering and elsewhere I have DispatcherTimer. The timer ...
1
vote
2answers
559 views
DispatcherTimer with interval 0,0,1 is not exact 1 second?
(Using WPF)
In a small application that i wrote, i am using some count-down timers.
For this i have used the DispatcherTimer
counter01 = new DispatcherTimer();
counter01.Tick += new ...
0
votes
2answers
380 views
Update WPF Listview as db table updates
I'm using DispatcherTimer() to call update function to update listview from database where data is updated somewhere else. So, the listview is used as if dashboard.
private void Update(){
...
0
votes
2answers
459 views
Countdown timer stopping at random points
I have an application that requires multiple countdown timers to run (some simultaneously). They also update UI elements with the time remaining on the countdown. I have tried using DispatcherTimer ...
0
votes
1answer
94 views
dispatch_source_set_cancel_handler and assigning nil to @property ivar
When you have a cancel_handler for a timer, can you directly reference and reset any ivars declared as a property with 'assign' attribute or do you have to first assign it as a __block?
@interface ...
4
votes
2answers
2k views
dispatch_source_cancel on a suspended timer causes EXC_BAD_INSTRUCTION
I'm trying to cancel and then release a suspended timer but when I invoke 'dispatch_release' on it, I immediately get EXC_BAD_INSTRUCTION.
Is this not a valid set of actions to take on a timer?
...
0
votes
2answers
201 views
More DispatcherTimers in one application
I have an application behaving like autorefresh. It checks emails, new videos, jokes, etc.
My client wants these single elements check in different intervals. For example emails every minute, videos ...
0
votes
1answer
735 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
218 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 ...
1
vote
2answers
339 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 ...
6
votes
1answer
2k 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 ...
7
votes
6answers
2k 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 ...
0
votes
2answers
248 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). ...
1
vote
1answer
99 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 ...
2
votes
1answer
447 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 ...
0
votes
1answer
2k 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. ...
1
vote
2answers
671 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
...
0
votes
5answers
105 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);
...
2
votes
3answers
1k 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, ...
3
votes
4answers
2k 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();
...
0
votes
1answer
475 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
149 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 ...
1
vote
1answer
1k 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
407 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 ...
4
votes
2answers
904 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 ...

