vote up 0 vote down star

How can I create and show a popup window at a specific time in WPF? What I mean how to display the window on the side of system tray.

flag

Need more clarity – Prashant Jun 2 at 8:26
This shouldn't be voted down because it doesn't have enough clarity! Give the guy a chance... – Dave Arkell Jun 2 at 8:48
Is there any option for creating a popup window in wpf? – Ortus Mallum Jun 2 at 9:19

3 Answers

vote up 2 vote down check

You could use a timer if you're trying to make the thing popup in a certain number of hours/seconds/minutes (or work out how many hours/seconds/minutes are left until your specific time comes around).

private System.Windows.Threading.DispatcherTimer popupTimer;

// Whatever is going to start the timer - I've used a click event
private void OnClick(object sender, RoutedEventArgs e)
{
    popupTimer = new System.Windows.Threading.DispatcherTimer();

    // Work out interval as time you want to popup - current time
    popupTimer.Interval = specificTime - DateTime.Now;
    popupTimer.IsEnabled = true;
    popupTimer.Tick += new EventHandler(popupTimer_Tick);
}

void popupTimer_Tick(object sender, EventArgs e)
{
    popupTimer.IsEnabled = false;
    // Show popup
    // ......
}


Ok, so you also want to know how to do a notifier popup type thing, which maybe this article in CodeProject might help.

link|flag
vote up 0 vote down

You might want to check out DispatcherTimer.

HTH, Kent

link|flag
vote up 0 vote down

Check out this question for firing an event at a set time.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.