示例#1
0
 protected override void OnStart(string[] args)
 {
     try
     {
         VM = new VMMainView();
     }
     catch (Exception e)
     {
         Utility.Log(LogLevel.Error, e, Application.Current.FindResource("WindowsServiceStartError").ToString());
     }
 }
示例#2
0
 protected override void OnStop()
 {
     try
     {
         if (VM != null)
         {
             VM.DoCleanJobs();
         }
         VM = null;
         Application.Current.Shutdown(0);//exe process does not terminate immediately, but after a while when the service successfully stopped.
     }
     catch (Exception e)
     {
         Utility.Log(LogLevel.Error, e, Application.Current.FindResource("WindowsServiceStopError").ToString());
     }
 }
示例#3
0
 public MainWindow(VMMainView vm)
 {
     InitializeComponent();
     this.DataContext = vm;
     #region ui stuff
     #region system tray
     //WPF System Tray Application:http://social.msdn.microsoft.com/Forums/en/wpf/thread/21992d0b-a02c-4042-a188-47b0a2b99b0b
     System.Windows.Forms.NotifyIcon notifyIcon = new System.Windows.Forms.NotifyIcon();
     using (System.Drawing.Bitmap bmp = new System.Drawing.Bitmap(Application.GetResourceStream(new Uri("/PortableBasemapServer;component/Images/Map.png", UriKind.RelativeOrAbsolute)).Stream))
     {
         IntPtr ptr = bmp.GetHicon();
         notifyIcon.Icon = new System.Drawing.Icon(System.Drawing.Icon.FromHandle(ptr), 40, 40);
         PBS.Util.Utility.DeleteObject(ptr);
     }
     notifyIcon.DoubleClick += (s, a) =>
     {
         if (this.WindowState == WindowState.Minimized)
         {
             this.Show();
             this.WindowState = WindowState.Normal;
         }
         else
         {
             this.WindowState = WindowState.Minimized;
         }
     };
     this.StateChanged += (s, a) =>
     {
         if (vm.IsShowInSysTray)
         {
             if (this.WindowState == WindowState.Minimized)
             {
                 this.Hide();
                 notifyIcon.Visible = true;
                 //_notifyIcon.BalloonTipTitle = "PBS";
                 //_notifyIcon.BalloonTipText = FindResource("msgSysTrayBalloon").ToString();
                 //_notifyIcon.ShowBalloonTip(1000);
             }
         }
         else
         {
             notifyIcon.Visible = false;
         }
     };
     //context menu
     System.Windows.Forms.ContextMenuStrip  cms     = new System.Windows.Forms.ContextMenuStrip();
     System.Windows.Forms.ToolStripMenuItem cmiExit = new System.Windows.Forms.ToolStripMenuItem();
     cmiExit.Click += (s, a) =>
     {
         Application.Current.Shutdown();
     };
     cms.Items.Add(cmiExit);
     cms.Opened += (s, a) =>
     {
         cmiExit.Text = Application.Current.FindResource("cmiExit").ToString();
     };
     notifyIcon.ContextMenuStrip = cms;
     notifyIcon.MouseMove       += (s, a) =>
     {
         string usingPorts = string.Empty;
         foreach (KeyValuePair <int, PortEntity> kv in ServiceManager.PortEntities)
         {
             usingPorts += kv.Key.ToString() + ", ";
         }
         if (!string.IsNullOrEmpty(usingPorts))
         {
             usingPorts = usingPorts.Remove(usingPorts.Length - 2, 2);
         }
         notifyIcon.Text = Application.Current.FindResource("msgUsingPorts").ToString() + usingPorts + "\r\n" + Application.Current.FindResource("msgStartedServiceCount").ToString() + ServiceManager.Services.Count;
     };
     if (vm.IsShowInSysTray)
     {
         notifyIcon.Visible = true;
     }
     vm.IsShowInSysTrayChanged += (s, a) =>
     {
         notifyIcon.Visible = (s as VMMainView).IsShowInSysTray;
     };
     #endregion
     //window closing
     Application.Current.MainWindow.Closing += (s, a) =>
     {
         if (ServiceManager.Services.Count > 0 && !vm.IsLoadLastConfiguration)
         {
             if (MessageBox.Show(Application.Current.FindResource("msgExitWarning").ToString(), Application.Current.FindResource("msgWarning").ToString(), MessageBoxButton.OKCancel, MessageBoxImage.Warning) == MessageBoxResult.Cancel)
             {
                 a.Cancel = true;
                 return;
             }
         }
         vm.DoCleanJobs();
         if (notifyIcon != null)
         {
             notifyIcon.Dispose();
             notifyIcon = null;
         }
     };
     #endregion
     this.Show();
 }