-4
votes
1answer
28 views

How to make a wpf countdown timer?

I want to create wpf countdown timer that display the result as hh:mm:ss into textbox, I would be thankful for anyone help.
0
votes
0answers
18 views

WPF UI window freezes when timer is running

I am building an application using the MVVM pttern in which I have a window with a tab control. WHen any tabitem is selected, I validate it for data errors using IDataError. I then populate a message ...
0
votes
0answers
24 views

XAML timer-triggered binding update

Suppose you have textbox whose value is time-dependent, like say, the the time passed since the application was started. Is it possible to express a solution in pure XAML which automagically ...
0
votes
0answers
46 views

Memory Leak from use of DispatcherTimer

so I'm not the greatest at analyzing memory leaks but from what I can tell I have located one. I am using a timer to check if something is connected and when I comment out my timer my memory leak ...
0
votes
1answer
36 views

Repeat a listbox that opens files

Hello I want my listbox playlist to repeat after last file is played. How do I reset the index so it repeats to the start of the listbox? Shownextimage handles the media one by one to show on the ...
0
votes
1answer
28 views

Turn of timer while video is playing?

is there anyway you can pause the timer if a movie is played? the reason why i'm asking is because I'm using a MediaElement that uses both images and videos and therefore I have to find a solution to ...
0
votes
0answers
64 views

WPF timer multiplies result by refreshing xaml page | C#

I'm making win8 app with c# and I have faced problem with my timer. I made challenge to user with dynamic information that every time changes. but the problem is that result multiplies every time page ...
0
votes
1answer
78 views

WPF: How to solve memory leak in this code?

I have a window that alert user if have any message (code bellow). Each time timer1.Elapsed, the app's memory rise up more than 1 MB. After 10 alert times, it take more than 15 MB. Then if have any ...
0
votes
1answer
35 views

DIsplay timer on UI while executing SQL Query in WPF

When I click on "Start" Button my SQL query starts executing. I want to start timer on the click of start button and stops it on completing the query execution in UI.Please suggest me how to do it in ...
1
vote
2answers
78 views

How do I create a WPF C# Application that pops up at a certain date and time set by the user?

I need it to be sort of like this application here: http://www.youtube.com/watch?v=Cw6Ml6gZqU8 It is a reminder. The user types in notes and then sets a date and time the form will pop back up. It ...
1
vote
1answer
267 views

How to do fast smooth animation in C# using WPF

I'm currently programming a game of Pong. I have the majority of the game completed but I've run into an annoying problem. I'm using a dispatcherTimer with priority set to Send and time span set to 1 ...
4
votes
4answers
1k views

WPF Progressbar

In my WPF application i have to show a progressbar progress with in a timer tick event, which i am writing as below, System.Windows.Forms.Timer timer; public MainWindow() { timer = new ...
1
vote
1answer
283 views

How does the dispatcher timer perform its work in the tick event if another event happens in between? What is wrong with this code?

I've spent the last few days looking at the DispatcherTimer and I still can't wrap my head around some stuff. Here's what I understand so far, the tick event will not occur twice at the same time ...
0
votes
1answer
24 views

Apprpriate Timer object to run audio in WPF

I have large WPF application which also uses MEF. I want to trigger an Audio alert on certain condition and repeat it for the times specified by user. audio file can be .wav or .mp3. I am making use ...
0
votes
2answers
58 views

how to use Dispatcher in WPF to make a timer [closed]

Iam a noobi i have this problem , i need to make a timer for my program ,which starts when the user clicks a specific button. and then to output the countdown in to a label Thanks in advance
2
votes
1answer
122 views

Timer Elapsed Event does not perform all actions

I have a Backgroundworker which collects a large amount of data from a database. I want to set a timeout limit on the thread so that if it does not return the results after a set amount of time the ...
-1
votes
2answers
93 views

Show another window after five seconds [closed]

I want to make a WPF pogram like this: When run the program,the main window shows,five seconds later,another window shows. How can I achieve it? I have seen the timer,but I can't do it.
1
vote
1answer
557 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
219 views

Update Datagrid when ItemsSource changes

I have gone through many forums to find a solution for my problem, but I didn't find the appropriate solution. I have a Datagrid that is bound to a Datasource (MS SQL Server 2008) following the MVVM ...
1
vote
1answer
72 views

Timer not getting called when backgroundworker running

I have a WPF window with a button that spawns a BackgroundWorker thread to create and send an email. While this BackgroundWorker is running, I want to display a user control that displays some message ...
2
votes
3answers
404 views

How to execute a method periodically from WPF client application using threading or timer [closed]

I am developing a WPF client application.This app sends data periodically to the webservice. When user logged into the app I want run particular method every 5 mts to send data to the .asmx service. ...
0
votes
0answers
197 views

WPF Multiple Timers and USB Virtual Serial Port

I searched for the answers but still can't decide which classes to use with my program. I will be appreciated if you guys can help me out. I have a program based on usb port communication, when the ...
-1
votes
1answer
142 views

System.Timers.Timer invoke WPF component's method

I have a class, that is responsible for the logic of a classic snake game logic, that uses System.Timers.Timer. Because the exact same class is used for a Windows Forms version of the exact same ...
0
votes
0answers
66 views

2-D animation timer synchronization [closed]

Hello I need advice what pattern, classes, libraries it is better to use for creating on WPF highly productive animation with exact synchronization with a timer of many 2-D objects which are ...
2
votes
2answers
280 views

Why doesn't System.Timers.Timer update non-busy UI?

I have been looking for a reason, but about every single topic on stackoverflow I could find suggested a busy UI as the reason. I have very basic code, just for testings and it simply won't update the ...
2
votes
2answers
746 views

Timer to fire an event WPF

I have a project here and it has set by default that the actions occur by MouseEnter event. I mean, opening a Window, closing, returning, whatever, happens only by the MouseEnter event. I was ...
1
vote
3answers
414 views

How to implement a timer for regular events?

I would like to implement some timers into my application. My goal is to provide an easy way to execute some function every x seconds/minutes so I thought about implementing a 1 sec, 5 sec and 15 ...
1
vote
4answers
338 views

WPF Multiple Timer Control

I searched a few links for Timer Control for both Windows and WPF applications but I would appreciate some advice on my situation... As I'm using WPF it seems initial options are either ...
0
votes
3answers
297 views

How to find if child window is opened or not

I have a requirement where I need to check whether any records have changed, depending on that I need to alert user. So using timer for every 5 sec I am trying to verify from database and showing ...
1
vote
2answers
167 views

Timer isn't stoping then restarting after executing method?

I have been working on this project for the past 3 days till 3-4 am and I believe I know where its messing up (My comments are marking the calculation that I believe is the issue) but as for solving ...
0
votes
1answer
92 views

Threading.Timer stack overflow

Hy, I just wanted to find out how to implement a loop that takes around 80 to 120ms (mostly 80ms) to execute. The loop has to execute for about 30 minutes... basically it is a SURF matching algorithm. ...
0
votes
0answers
143 views

Timers degrading UI performance of WPF application

I have a WPF C# GUI application that has a number of menu bars, buttons and grid controls. In the main XAML form class, I have five System.Timer.Timer objects that are being declared at a class ...
7
votes
4answers
689 views

creating an advanced metronome in WPF (problems with code created animation and completed event)

Good afternoon, over the last few weeks I have been working on a project to create an advanced metronome. the metronome is made up of the following things a swinging arm a light flash a collection ...
2
votes
1answer
208 views

System.Timers.Timer decaying with each iteration

Ok so I'm learning C#/.NET and have thus far stuck to winforms, but WPF seemed suitable for this project. I have a WrapPanel that displays an array of images. Sometimes this array will overspill the ...
1
vote
1answer
235 views

Display labels and moving shapes

I am new to C# and WPF. I want to do the following : Display few labels one after the other after exactly 5 seconds, After finishing the above I have to move a shape on the canvas for about ten ...
0
votes
2answers
324 views

Run a process for at least 5 seconds in C# WPF

My goal is to force a process to run for at least 5 seconds (any amount of time really). I am working of the .NET Framework 3.5, with Service Pack 1. The idea is that the document holds some ...
0
votes
2answers
231 views

Cancelling Thread Timer from another class

I'm attempting to implement the MSDN example (http://msdn.microsoft.com/en-us/library/swx5easy.aspx) for Thread.Timers in my own code. I want to be able to cancel the timer when a certain user ...
1
vote
2answers
686 views

BackGround Thread with timer for application level-WPF Application

I have a wpf application(No MVVM), this application requires several background thread(Runs with specific time interval). These thread should be on Application Level i.e. if user is on any WPF ...
2
votes
5answers
1k views

System.Threading Timer

I am having problems converting my DispatcherTimer syntax to the Thread Timer. When i run my application suddenly it shuts down without any error. Basically i want the timer to execute 2 methods ...
2
votes
1answer
2k views

Get elapsed time since Application start in C#

I am porting an app from ActionScript3.0 (Flex) to C# (WPF).AS3.0 has got a handy utility called getTimer() which returns time since Flash Virtual machine start in milliseconds.I was searching in C# ...
0
votes
2answers
2k views

WPF timer countdown

I am wondering about timers in WPF. what i basically know is how to make a simple count down timer (label) count down like this code: private void buttonStartOne_Click(object sender, RoutedEventArgs ...
2
votes
1answer
2k views

Trying to programmatically scroll a scrollviewer

I'm developing a WPF app in which I have a ScrollViewer with grid (16 ColumnDefinitions all auto width) with an image assigned to each column. The effect I want to create is when the mouse enters a ...
0
votes
2answers
402 views

Choosing right timer for scheduler

I'm making my own scheduler, which is going to be used in one of my WPF application. Here is code. // Interface for a scheduled task. public interface IScheduledTask { // Name of a task. ...
0
votes
1answer
559 views

Timer event handler keeps getting called?

I seem to have a thread issue I think, I have written a timer to return to the main screen if its on any other screen for 5 seconds. This code works fine the first time the ResetScreen() is called, ...
0
votes
2answers
312 views

'Motion easing' effect in C#

I need to increment an integer, but I want to ease the speed at which it's incremented. So say for example I have an int that is equal to 0, I would like this int to get to 100 eventually but ...
5
votes
3answers
463 views

MediaElement & DispatcherTimer in strictly timing application

I'm currently developing a WPF application which requires strictly timing, says, being late 2 seconds matters. I have a MediaElement mediaPlayer which seeks to a new position and play every time a ...
2
votes
1answer
335 views

Delayed Execution In VB.NET

I am in need to delay the execution of a line of code, say, by 5 seconds. But by doing System.Threading.Thread.Sleep(5000) the whole UI hangs and I don't want that to happen. Because I want to be ...
1
vote
2answers
597 views

Splash Screen Timer

I actually try to add a Splash Screen to my WPF application. It is quite easy: SplashScreen s = new SplashScreen("/Images/Agrar.png"); s.Show(true); My problem is, that I want the Splash Screen to ...
1
vote
2answers
585 views

DispatcherTimer becomes slow for every minute in updating UI

I have implemented a DispatcherTimer with databinding which would act like a stopwatch or counting timer to display the time elapsed during an audio call. (as you can see in your mobile phones) The ...
15
votes
2answers
998 views

How System.Timers.Timer behave in WPF application, after Hibernate, and Sleep?

I'm using System.Timers.Timer in my WPF application. I want to understand how Timer does behave, after Computer is hibernated, and sleep. I'm getting some weird issues with my application, after ...

1 2 3