Now I appreciate the moral of the story is "don't hog the UI thread" but we tried to KISS by keeping things on the UI thread for as long as possible but I think we've just hit the tipping point and we're going to have to change our design.
But anyway..... something I noticed on our device that doesn't happen on desktop: When you hog the UI thread it drops keys. Here is a very simple app that displays the problem.
using System;
using System.Windows.Forms;
namespace DeviceApplication14
{
public partial class Form1 : Form
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[MTAThread]
static void Main()
{
Application.Run(new Form1());
}
private int ctr;
public Form1()
{
InitializeComponent();
KeyPreview = true;
KeyDown += Form1_KeyDown;
}
void Form1_KeyDown(object sender, KeyEventArgs e)
{
for (int i = 0; i < 1000000; i++)
{
}
ctr++;
button1.Text = ctr.ToString();
}
private void button2_Click(object sender, EventArgs e)
{
ctr = 0;
button1.Text = ctr.ToString();
}
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(235, 137);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(329, 239);
this.button1.TabIndex = 0;
this.button1.Text = "button1";
//
// button2
//
this.button2.Location = new System.Drawing.Point(62, 291);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(72, 20);
this.button2.TabIndex = 1;
this.button2.Text = "Clear";
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(638, 455);
this.Controls.Add(this.button2);
this.Controls.Add(this.button1);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
}
#endregion
private Button button1;
private Button button2;
}
}
When I run this on my custom box I can press four keys in succession but my ctr only increments by two. If I then add a few zeros (to compensate for the desktop's greater speed) and run it on desktop I get all the keys.
What's going on here?