MailDispatcher and NotifyIcon : Dispatcher « Windows Presentation Foundation « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Windows Presentation Foundation » DispatcherScreenshots 
MailDispatcher and NotifyIcon
MailDispatcher and NotifyIcon
  


<Window x:Class="ActivationSample.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="ActivationSample"
    >
  <Grid>
    <ListBox Name="mailListBox" />
  </Grid>
</Window>
//File:Window.xaml.cs
using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
using System.Windows.Forms;
using System.Windows.Threading;

namespace ActivationSample
{
    public partial class MainWindow : Window
    {
        private bool isActive;
        private MailDispatcher mailDispatcher = new MailDispatcher();
        private NotifyIcon newMailNotifyIcon = new NotifyIcon();

        public MainWindow()
        {
            InitializeComponent();

            this.mailDispatcher.MailDispatched += mailDispatcher_MailDispatched;
            this.mailDispatcher.Start();
           // this.newMailNotifyIcon.Icon = ActivationSample.Properties.Resources.NewMailIcon;            
            this.isActive = true;
            this.newMailNotifyIcon.Visible = false;

        }

        public void AddMailItem(string data)
        {
            this.mailListBox.Items.Add(data);
        }

        void mailDispatcher_MailDispatched(object sender, EventArgs e)
        {
            ((MainWindow)this).AddMailItem(DateTime.Now.ToString());
            if (!this.isActive && this.newMailNotifyIcon.Visible == false)
            {
                this.newMailNotifyIcon.Visible = true;
            }
        }
//        void App_Deactivated(object sender, EventArgs e)
  //      {
    //        this.isActive = false;
      //  }

//        void App_Exit(object sender, ExitEventArgs e)
  //      {
    //        this.mailDispatcher.Stop();
      //  }        
    }

    public class MailDispatcher
    {
        DispatcherTimer timer;

        public event EventHandler MailDispatched;

        public void Start()
        {
            this.timer = new DispatcherTimer();
            timer.Tick += timer_Tick;
            timer.IsEnabled = true;
            timer.Interval = new TimeSpan(005);
        }

        public void Stop()
        {
            this.timer.IsEnabled = false;
            this.timer.Tick -= timer_Tick;
            this.timer = null;
        }

        void timer_Tick(object sender, EventArgs e)
        {
            if (MailDispatched != nullMailDispatched(this, EventArgs.Empty);
        }
    }    
}

   
    
  
Related examples in the same category
1.Unblock Thread with Dispatcher.BeginInvokeUnblock Thread with Dispatcher.BeginInvoke
2.DispatcherTimer and EventHandlerDispatcherTimer and EventHandler
3.Dispatcher.BeginInvoke with DispatcherPriority.NormalDispatcher.BeginInvoke with DispatcherPriority.Normal
4.Use DispatcherTimer to change Dependency PropertyUse DispatcherTimer to change Dependency Property
5.Dispatcher ExamplesDispatcher Examples
6.Using a DispatcherTimerUsing a DispatcherTimer
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.