Random geekery since 2005.

Husband, father, programmer, speaker, writer, blogger, podcaster, collector, traveler, golfer.

What I Learned In WP7 – Issue 8

Written in

by

Microsoft has officially announced sales numbers for the first 6 weeks of Windows Phone availability:

1.5 million phones have been sold to carriers and retailers.

That’s pretty exciting news.  Add that to the ever growing App Marketplace, and this platform is really taking shape quickly.


Today I am working on a simple Twitter application for a presentation I am giving at Codemash called “Mobile Smackdown” where I am going to be presenting with Chris Judd (Android) and Daniel Steinberg (iPhone).  We’re each going to build the same application on our respective platforms in 15 minutes.  Hence the “simple” moniker.  In building this, I realized that I’ve always required users to type something in a TextBox, remove focus from that textbox, and then press a save button.  As it turns out, there’s an easy way to use that “Return” key on the on-screen keyboard.  Here’s the code:

void textbox_KeyDown(object sender, KeyEventArgs e)
{
	if (e.Key == System.Windows.Input.Key.Enter || e.PlatformKeyCode == 0x0A)
	{
		//Do stuff here
		e.Handled = true;
	}
}

Tags

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

Create a website or blog at WordPress.com

%d bloggers like this: