Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4085246
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T18:32:58+00:00 2026-05-20T18:32:58+00:00

I have a DispatcherTimer i have initialised like so: static DispatcherTimer _timer = new

  • 0

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 EventHandler(_timer_Tick);
    _timer.Start();
}
static void _timer_Tick(object sender, EventArgs e)
{
    //do something
}

The _timer_Tick event never gets fired, have i missed something?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T18:32:59+00:00Added an answer on May 20, 2026 at 6:32 pm

    If this is your main entry point, it’s likely (near certain) that the Main method exits prior to when the first DispatcherTimer event could ever occur.

    As soon as Main finishes, the process will shut down, as there are no other foreground threads.

    That being said, DispatcherTimer really only makes sense in a use case where you have a Dispatcher, such as a WPF or Silverlight application. For a console mode application, you should consider using the Timer class, ie:

    static System.Timers.Timer _timer = new System.Timers.Timer();
    
    static void Main()
    {
        _timer.Interval = 5000;
        _timer.Elapsed  += _timer_Tick;
        _timer.Enabled = true;
    
        Console.WriteLine("Press any key to exit...");
        Console.ReadKey(); // Block until you hit a key to prevent shutdown
    }
    static void _timer_Tick(object sender, ElapsedEventArgs e)
    {
        Console.WriteLine("Timer Elapsed!");
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm new to MVVM. I have a label in my view that looks like
I got an interesting bug report today. I have a DispatcherTimer whose Tick calls
I have a WPF app that uses DispatcherTimer to update a clock tick. However,
I have implemented a DispatcherTimer with databinding which would act like a stopwatch or
I have a custom usercontrol that does a little animation on a DispatcherTimer tick,
Have a procedure which looks like Procedure TestProc(TVar1, TVar2 : variant); Begin TVar1 :=
i have a wpf app that is updating date/time in one dispatchertimer, another is
I have been working with WPF and threading. I would like to pause the
That's my code inside my MainPage.xaml.cs public MainPage() { InitializeComponent(); DispatcherTimer dt = new
In my Windows Store app I have a method public async static Task InitAds()

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.