Example #1
0
 /// <summary>
 /// Setups the thread
 /// </summary>
 protected virtual void SetupThread()
 {
     thread = new Thread(new ParameterizedThreadStart(Run))
     {
         IsBackground = true,
         Name         = "SimplePen: " + type.ToString()
     };
 }