/// <summary> /// Initializes a new instance of the <see cref="FormMain" /> class. /// </summary> public FormMain() { this.InitializeComponent(); // Create data members, color generator and stroke collections. touchColor = new TouchColor(); ActiveStrokes = new CollectionOfStrokes(); FinishedStrokes = new CollectionOfStrokes(); if (BOUNDARYTEST) { timeout = 60; } }
private TouchColor touchColor; // Color generator #endregion Fields #region Constructors /// <summary> /// Initializes a new instance of the <see cref="FormMain" /> class. /// </summary> public FormMain() { this.InitializeComponent(); // Create data members, color generator and stroke collections. touchColor = new TouchColor(); ActiveStrokes = new CollectionOfStrokes(); FinishedStrokes = new CollectionOfStrokes(); if (BOUNDARYTEST) { timeout = 60; } }