Clients/Test/Program.cs
author StephaneLenclud
Sun, 21 Aug 2016 16:11:40 +0200
changeset 247 afdbe76ab03b
parent 190 60977f2b3ca7
permissions -rw-r--r--
Ear HID event now functional.
     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.Drawing;
    26 
    27 namespace SharpDisplayClient
    28 {
    29     static public class Program
    30     {
    31         /// <summary>
    32         /// The main entry point for the application.
    33         /// </summary>
    34         [STAThread]
    35         static public void Main()
    36         {
    37             //Set high priority to our process to avoid lags when rendering to our screen
    38             System.Diagnostics.Process.GetCurrentProcess().PriorityClass = System.Diagnostics.ProcessPriorityClass.AboveNormal;
    39 
    40             Application.EnableVisualStyles();
    41             Application.SetCompatibleTextRenderingDefault(false);
    42 			Application.Run(new FormClientTest());
    43         }
    44 
    45 		[STAThread]
    46 		static public void MainWithParams(object aParams)
    47 		{
    48 			//Set high priority to our process to avoid lags when rendering to our screen
    49 			System.Diagnostics.Process.GetCurrentProcess().PriorityClass = System.Diagnostics.ProcessPriorityClass.AboveNormal;
    50 
    51 			Application.EnableVisualStyles();
    52 			Application.SetCompatibleTextRenderingDefault(false);
    53 			FormClientTest mainForm = new FormClientTest();
    54 			mainForm.Params = (StartParams)aParams;
    55 			Application.Run(mainForm);
    56 		}
    57 
    58     }
    59 
    60 	public class StartParams
    61 	{
    62 		public StartParams(Point aLocation, string aTopText="", string aBottomText="")
    63 		{
    64 			TopText = aTopText;
    65 			BottomText = aBottomText;
    66 			Location = aLocation;
    67 		}
    68 
    69 		public string TopText { get; set; }
    70 		public string BottomText { get; set; }
    71 		public Point Location { get; set; }
    72 	}
    73 }