<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>robburke.NET &#187; keyboard</title>
	<atom:link href="http://robburke.net/tag/keyboard/feed/" rel="self" type="application/rss+xml" />
	<link>http://robburke.net</link>
	<description>Robert Burke&#039;s home on the web.</description>
	<lastBuildDate>Wed, 18 Apr 2012 19:15:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Productivity Tip: Re-map Caps Lock to the Application Key</title>
		<link>http://robburke.net/2008/11/productivity-tip-remap-caps-lock-to-the-application-key-right-click/</link>
		<comments>http://robburke.net/2008/11/productivity-tip-remap-caps-lock-to-the-application-key-right-click/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 06:14:59 +0000</pubDate>
		<dc:creator>Rob Burke</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Application Key]]></category>
		<category><![CDATA[Caps Lock]]></category>
		<category><![CDATA[Dell]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[registry]]></category>
		<category><![CDATA[remap]]></category>
		<category><![CDATA[Studio 17]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://robburke.net/?p=392</guid>
		<description><![CDATA[My Dell Studio 17 does not have an &#8220;Application Key&#8221; &#8211; the key that usually sits beside the Windows key and behaves like right-clicking the mouse on a UI element.  I have no idea why Dell chose to omit one of the most useful keys on the keyboard, especially for laptop users, who pay a [...]]]></description>
			<content:encoded><![CDATA[<p><img title="Application Key" src="http://robburke.net/images/KeyboardApplicationKey.jpg" alt="Application Key" align="right" />My Dell Studio 17 does not have an &#8220;Application Key&#8221; &#8211; the key that usually sits beside the Windows key and behaves like right-clicking the mouse on a UI element.  I have no idea why Dell chose to omit one of the most useful keys on the keyboard, especially for laptop users, who pay a larger productivity tax every time they switch between keyboard and mouse.</p>
<p>This <a href="http://www.usnetizen.com/fix_capslock.php">great registry trick at US Netizen</a> lets you re-map keys like Caps Lock.  So I used it to re-map the Caps Lock key, which I never use, to the Application Key.  I&#8217;ve since found this remapping so handy that I&#8217;ve re-mapped Caps Lock to the Application Key on all my other client machines.</p>
<p>Caps Lock is oversized, easily accessible with your left hand&#8217;s little finger, and completely useless.  On the other hand, the Application Key, even when not omitted from a keyboard design, can be awkward to reach.  Just so I don&#8217;t have to figure it out again, <strong>here&#8217;s a Registry Edit file (.reg) that performs this re-mapping:</strong></p>
<p><strong><a href="http://robburke.net/links/RemapCapsLockToApplicationKey.zip">Registry Edit file to re-map Caps Lock to the Application Key (zipped .reg)</a></strong>.</p>
<p>Double-click the .reg file to re-map Caps Lock and then <strong>reboot for the change to take effect.</strong></p>
<p>This has worked for me on XP, Vista, and Windows 7 [<strong><em>edit 19 Aug 2009: </em></strong>including RTM].  However, the above .reg file comes with no guarantees &#8211; I tweaked a .reg I lifted from the US Netizen site &#8211; so use at own risk.  I am putting it here because it&#8217;s so useful, I&#8217;m sure to be back for it again [<strong><em>edit 19 Aug 2009:</em></strong> and I have :) ].</p>
]]></content:encoded>
			<wfw:commentRss>http://robburke.net/2008/11/productivity-tip-remap-caps-lock-to-the-application-key-right-click/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WPF Keyboard Navigation and Focus Considerations</title>
		<link>http://robburke.net/2008/09/wpf-keyboard-navigation-and-focus-considerations/</link>
		<comments>http://robburke.net/2008/09/wpf-keyboard-navigation-and-focus-considerations/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 23:56:50 +0000</pubDate>
		<dc:creator>Rob Burke</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[focus]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://robburke.net/?p=126</guid>
		<description><![CDATA[Managing WPF keyboard focus can be a challenge, especially if you&#8217;re retrofitting an application that&#8217;s full of custom styles and templates, and lots of customized ItemControls, each of which was originally designed by your Designer principally for pointer-based input. Tab-tab-tab between controls should &#8220;just work,&#8221; but it turns out, it&#8217;s a lot more complicated (with [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" style="border: 0pt none; float: right;" src="http://www.robburke.net/images/WPFLogo.jpg" alt="" width="200" height="33" />Managing WPF keyboard focus can be a challenge, especially if you&#8217;re retrofitting an application that&#8217;s full of custom styles and templates, and lots of customized ItemControls, each of which was originally designed by your Designer principally for pointer-based input. </p>
<p>Tab-tab-tab between controls should &#8220;just work,&#8221; but it turns out, it&#8217;s a lot more complicated (with good reason) than just setting the tab order.</p>
<p>Mark Smith just posted a series of very practical series of three articles about this subject.  However, he has no contact link or comments enabled in his blog (that I could find), so the best I can do is link to him here.  Thank you Mark!</p>
<p><a href="http://www.julmar.com/blog/mark/PermaLink,guid,2974164f-97c1-4e20-85f9-416cf6bed219.aspx">Part 1: It&#8217;s Basically Focus</a></p>
<p><a href="http://www.julmar.com/blog/mark/PermaLink,guid,6e4769e5-a0b3-47b2-a142-6dfefd0c028e.aspx">Part 2: Changing WPF Focus in Code</a></p>
<p><a href="http://www.julmar.com/blog/mark/PermaLink,guid,03722678-882a-4bb4-928f-4fe0d35f051e.aspx">Part 3: Shifting focus to the first available element in WPF</a></p>
<p>My biggest learning from this process?  No matter what you&#8217;re buliding, don&#8217;t let keyboard focus in your application be an afterthought!</p>
]]></content:encoded>
			<wfw:commentRss>http://robburke.net/2008/09/wpf-keyboard-navigation-and-focus-considerations/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

