GenericHid.cs
author sl
Wed, 14 May 2014 16:37:44 +0200
changeset 4 0220435cf48a
permissions -rw-r--r--
Newly added device are now showing green. Removed devices are showing red.
Other devices are showing black. Devices in unknown state are showing purple.
     1 
     2 using System.Windows.Forms;
     3 
     4 namespace GenericHid
     5 {
     6 	/// <summary>
     7 	///  Runs the application and provides access to the instance of the form.
     8 	/// </summary> 
     9 	  
    10 	public class GenericHid  
    11 	{ 
    12 		internal static FrmMain FrmMy; 
    13 		
    14 		/// <summary>
    15 		///  Displays the application's main form.
    16 		/// </summary> 
    17 		
    18 		public static void Main() 
    19 		{ 
    20 			FrmMy = new FrmMain(); 
    21 			Application.Run(FrmMy); 
    22 		} 
    23 	} 
    24 }