Server/Program.cs
author StephaneLenclud
Sat, 26 Sep 2015 16:35:27 +0200
changeset 167 d2295c186ce1
parent 92 787dee27fc0a
child 201 6213f42f1983
permissions -rw-r--r--
Better CEC architecture.
     1 //
     2 // Copyright (C) 2014-2015 Stéphane Lenclud.
     3 //
     4 // This file is part of SharpDisplayManager.
     5 //
     6 // SharpDisplayManager is free software: you can redistribute it and/or modify
     7 // it under the terms of the GNU General Public License as published by
     8 // the Free Software Foundation, either version 3 of the License, or
     9 // (at your option) any later version.
    10 //
    11 // SharpDisplayManager is distributed in the hope that it will be useful,
    12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
    13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    14 // GNU General Public License for more details.
    15 //
    16 // You should have received a copy of the GNU General Public License
    17 // along with SharpDisplayManager.  If not, see <http://www.gnu.org/licenses/>.
    18 //
    19 
    20 using System;
    21 using System.Collections.Generic;
    22 using System.Linq;
    23 using System.Threading.Tasks;
    24 using System.Windows.Forms;
    25 using System.Security.Principal;
    26 using System.Diagnostics;
    27 using System.Reflection;
    28 
    29 namespace SharpDisplayManager
    30 {
    31     static class Program
    32     {
    33         //WARNING: This is assuming we have a single instance of our program.
    34         //That is what we want but we should enforce it somehow.
    35         public static MainForm iMainForm;
    36         /// <summary>
    37         /// The main entry point for the application.
    38         /// </summary>
    39         [STAThread]
    40         static void Main()
    41         {
    42 
    43 			/*
    44 			if (!IsRunAsAdministrator())
    45 			{
    46 				var processInfo = new ProcessStartInfo(Assembly.GetExecutingAssembly().CodeBase);
    47 
    48 				// The following properties run the new process as administrator
    49 				processInfo.UseShellExecute = true;
    50 				processInfo.Verb = "runas";
    51 
    52 				// Start the new process
    53 				try
    54 				{
    55 					Process.Start(processInfo);
    56 				}
    57 				catch (Exception)
    58 				{
    59 					// The user did not allow the application to run as administrator
    60 					MessageBox.Show("Sorry, this application must be run as Administrator.");
    61 				}
    62 
    63 				// Shut down the current process
    64 				Application.Exit();
    65 				return;
    66 				//Application.Current.Shutdown();
    67 			}*/
    68 
    69 
    70 			Application.ApplicationExit += new EventHandler(OnApplicationExit);
    71 			//
    72             Application.EnableVisualStyles();
    73             Application.SetCompatibleTextRenderingDefault(false);
    74             iMainForm = new MainForm();
    75             Application.Run(iMainForm);
    76         }
    77 
    78 
    79 
    80 		static private bool IsRunAsAdministrator()
    81 		{
    82 		  var wi = WindowsIdentity.GetCurrent();
    83 		  var wp = new WindowsPrincipal(wi);
    84 
    85 		  return wp.IsInRole(WindowsBuiltInRole.Administrator);
    86 		}
    87 
    88 		/// <summary>
    89 		/// Occurs after form closing.
    90 		/// </summary>
    91 		/// <param name="sender"></param>
    92 		/// <param name="e"></param>
    93 		static private void OnApplicationExit(object sender, EventArgs e)
    94 		{
    95 
    96 		}
    97     }
    98 }