<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>NLarge</title><link>http://www.codeplex.com/NLarge/Project/ProjectRss.aspx</link><description>NLarge is a free little utility for technical presentations.  It magnifies the screen through a smooth animation, and allows you to pan and zoom around the magnified screen.  You can annotate the m...</description><item><title>New Post: Zoom without drawing?</title><link>http://www.codeplex.com/NLarge/Thread/View.aspx?ThreadId=30182</link><description>&lt;div style="line-height: normal;"&gt;Is it possible to just having the zoom feature&amp;nbsp;and still&amp;nbsp;able to do&amp;nbsp;all the&amp;nbsp;left and right&amp;nbsp;clicking, highlighting and other stuff?&amp;nbsp; &lt;br&gt;
I wish it can turn on and off the drawing feature instead.&amp;nbsp; &lt;br&gt;
&lt;br&gt;
&lt;br&gt;
thanks in advance,&lt;br&gt;
soda&amp;nbsp; &lt;br&gt;
&lt;/div&gt;</description><author>soda97</author><pubDate>Tue, 24 Jun 2008 14:58:37 GMT</pubDate><guid isPermaLink="false">New Post: Zoom without drawing? 20080624025837P</guid></item><item><title>Created Issue: Keys don't get to NLarge</title><link>http://www.codeplex.com/NLarge/WorkItem/View.aspx?WorkItemId=17121</link><description>When I&amp;#39;m using VS2008, Ctrl &amp;#43;1 does not trigger NLarge. It seems that NLarge does not get the message there. Any clue on where to search for a solution&amp;#63;&lt;br /&gt;&lt;br /&gt;&amp;#40;very cool app overall&amp;#41;&lt;br /&gt;</description><author>pelikhan</author><pubDate>Sun, 22 Jun 2008 05:50:31 GMT</pubDate><guid isPermaLink="false">Created Issue: Keys don't get to NLarge 20080622055031A</guid></item><item><title>NEW POST: Feature Request: Ability to draw straight lines</title><link>http://www.codeplex.com/NLarge/Thread/View.aspx?ThreadId=17281</link><description>&lt;div style="line-height: normal;"&gt;I know this is late, but I just stumbled across this thread, figured I'd answer the question...&lt;br&gt;
&lt;br&gt;
If you want to constrain your InkCanvas to draw straight lines, the simplest thing  to do (assuming you want to constrain to horizontal and/or vertical lines) is to use the gesture system.&amp;nbsp; So, you start by setting your InkCanvas.EditingMode to &amp;quot;InkAndGesture&amp;quot; and then you SetEnabledGestures to just &amp;quot;Right&amp;quot;,&amp;quot;Left&amp;quot;,&amp;quot;Up&amp;quot;,&amp;quot;Down&amp;quot; ...&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; myInkCanvas.EditingMode = InkCanvasEditingMode.InkAndGesture;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //&amp;nbsp; The gestures in which the application is interested are enabled here.&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; myInkCanvas.SetEnabledGestures(new ApplicationGesture[] { &lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ApplicationGesture.Up, ApplicationGesture.Down, ApplicationGesture.Left, ApplicationGesture.Right });&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Hook up the &amp;quot;Gesture&amp;quot; event.&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; myInkCanvas.Gesture += new InkCanvasGestureEventHandler(InkCanvas_Gesture);&lt;br&gt;
&lt;br&gt;
In the Gesture event, you need to handle these something like this:&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GestureRecognitionResult topResult = e.GetGestureRecognitionResults()[0];&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (topResult.RecognitionConfidence == RecognitionConfidence.Strong)&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ApplicationGesture gesture = topResult.ApplicationGesture;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; switch (gesture)&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // basically, each of them looks something like this:&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case ApplicationGesture.Right { &lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // You're hodling CTRL to draw straight lines&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if( System.Windows.Input.Keyboard.Modifiers &amp;amp;&amp;amp; System.Windows.Input.ModifierKeys.Control == System.Windows.Input.ModifierKeys.Control ) {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; System.Windows.Input.StylusPointCollection points = new System.Windows.Input.StylusPointCollection();&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; points.Add( new System.Windows.Input.StylusPoint(&amp;nbsp; e.strokes[0].StylusPoints[0].X, e.strokes[0].StylusPoints[0].Y ) )&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; points.Add( new System.Windows.Input.StylusPoint( e.strokes.GetBounds().Right, e.strokes[0].StylusPoints[0].Y&amp;nbsp; ) )&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; myInkCanvas.Strokes.Add( new System.Windows.Ink.Stroke( points, e.strokes[0].DrawingAttributes ) )&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else {&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; e.Cancel = true&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; } 
&lt;/div&gt;</description><author>Jaykul</author><pubDate>Mon, 02 Jun 2008 15:30:22 GMT</pubDate><guid isPermaLink="false">NEW POST: Feature Request: Ability to draw straight lines 20080602033022P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/NLarge/Wiki/View.aspx?title=Home&amp;version=12</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;NLarge Project Home Page&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;NLarge is a little utility for technical presentations.  It magnifies the screen through a smooth animation, and allows you to pan and zoom around the magnified screen.  You can annotate the magnified image using the mouse or a Tablet PC pen.  You can also annotate with text.&lt;br /&gt; &lt;br /&gt;NLarge runs from your system tray, and is triggered by a hotkey (Ctrl-1 by default). &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Compatibility&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;Because NLarge is built with the Windows Presentation Foundation, it runs on Windows Vista and Windows Server 2008, and will also work on Windows XP and Server 2003 if you install the &lt;a href="http://www.netfx3.com/" class="externalLink"&gt;.NET Framework version 3.0 &lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; (a free download).  &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Note:&lt;/b&gt; New versions of NLarge use transparency effects that are much smoother if you have installed the .NET Framework version 3.5 or 3.0 SP1.  You can &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=333325FD-AE52-4E35-B531-508D977D32A6" class="externalLink"&gt;install the 3.5 version of the framework here &lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. &lt;br /&gt; &lt;br /&gt;&lt;b&gt;My blog&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;More info is on &lt;a href="http://robburke.net" class="externalLink"&gt;my blog &lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.  Please feel free to contact me through the blog for more information.  If you have feature requests, I'd be grateful if you added them to the Issue Tracker here on CodePlex.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Download&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;You can download the latest version of NLarge through the &lt;a href="http://www.codeplex.com/NLarge/Release/ProjectReleases.aspx" class="externalLink"&gt;Releases page &lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;/div&gt;</description><author>robburke</author><pubDate>Tue, 22 Apr 2008 02:28:40 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080422022840A</guid></item><item><title>CREATED ISSUE: Unhandled exception at startup</title><link>http://www.codeplex.com/NLarge/WorkItem/View.aspx?WorkItemId=16068</link><description>Hi Robb,&lt;br /&gt;&lt;br /&gt;When I run NLarge.exe, I get the following exeception&amp;#58;&lt;br /&gt;&lt;br /&gt;An unhandled exception of type &amp;#39;System.Security.SecurityException&amp;#39; occurred in PresentationFramework.dll&lt;br /&gt;&lt;br /&gt;Additional information&amp;#58; Request for the permission of type &amp;#39;System.Security.Permissions.UIPermission, mscorlib, Version&amp;#61;2.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;b77a5c561934e089&amp;#39; failed.&lt;br /&gt;&lt;br /&gt;WinXP, .Net 3.5, all the latest security patches as of yesterday.&lt;br /&gt;&lt;br /&gt;I don&amp;#39;t have VS2008 installed, so I can&amp;#39;t debug into it I&amp;#39;m afraid.&lt;br /&gt;&lt;br /&gt;Marc&lt;br /&gt;</description><author>marc_omorain</author><pubDate>Fri, 11 Apr 2008 09:10:27 GMT</pubDate><guid isPermaLink="false">CREATED ISSUE: Unhandled exception at startup 20080411091027A</guid></item><item><title>UPDATED RELEASE: NLarge v1.1.3 Release (Apr 05, 2008)</title><link>http://www.codeplex.com/NLarge/Release/ProjectReleases.aspx?ReleaseId=12287</link><description>v1.1.3 Release - now with multimonitor support, text annotation support when zoomed in, a break timer, and a few bug fixes.  </description><author></author><pubDate>Sat, 05 Apr 2008 14:54:44 GMT</pubDate><guid isPermaLink="false">UPDATED RELEASE: NLarge v1.1.3 Release (Apr 05, 2008) 20080405025444P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/NLarge/Wiki/View.aspx?title=Home&amp;version=11</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;NLarge Project Home Page&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;NLarge is a little utility for technical presentations.  It magnifies the screen through a smooth animation, and allows you to pan and zoom around the magnified screen.  You can annotate the magnified image using the mouse or a Tablet PC pen.  You can also annotate with text.&lt;br /&gt; &lt;br /&gt;NLarge runs from your system tray, and is triggered by a hotkey (Ctrl-1 by default). &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Compatibility&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;Because NLarge is built with the Windows Presentation Foundation, it runs on Windows Vista and Windows Server 2008, and will also work on Windows XP and Server 2003 if you install the &lt;a href="http://www.netfx3.com/" class="externalLink"&gt;.NET Framework version 3.0 &lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; (a free download).  &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Note:&lt;/b&gt; New versions of NLarge use transparency effects that are much smoother using .NET Framework version 3.5 or 3.0 SP1.  You can &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=333325FD-AE52-4E35-B531-508D977D32A6" class="externalLink"&gt;install the 3.5 version of the framework here &lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. &lt;br /&gt; &lt;br /&gt;&lt;b&gt;My blog&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;More info is on &lt;a href="http://robburke.net" class="externalLink"&gt;my blog &lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.  Please feel free to contact me through the blog for more information.  If you have feature requests, I'd be grateful if you added them to the Issue Tracker here on CodePlex.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Download&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;You can download the latest version of NLarge through the &lt;a href="http://www.codeplex.com/NLarge/Release/ProjectReleases.aspx" class="externalLink"&gt;Releases page &lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;/div&gt;</description><author>robburke</author><pubDate>Sat, 05 Apr 2008 14:52:21 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080405025221P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/NLarge/Wiki/View.aspx?title=Home&amp;version=10</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;NLarge Project Home Page&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;NLarge is a little utility for technical presentations.  It magnifies the screen through a smooth animation, and allows you to pan and zoom around the magnified screen.  You can annotate the magnified image using the mouse or a Tablet PC pen.  You can also annotate with text.&lt;br /&gt; &lt;br /&gt;NLarge runs from your system tray, and is triggered by a hotkey (Ctrl-1 by default). &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Compatibility&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;Because NLarge is built with the Windows Presentation Foundation, it runs on Windows Vista and Windows Server 2008, and will also work on Windows XP and Server 2003 if you install the &lt;a href="http://www.netfx3.com/" class="externalLink"&gt;.NET Framework version 3.0 &lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; (a free download).  &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Note:&lt;/b&gt; New versions of NLarge use transparency effects that are much smoother using .NET Framework version 3.5 or 3.0 SP1.  You can &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=333325FD-AE52-4E35-B531-508D977D32A6" class="externalLink"&gt;install the 3.5 version of the framework here &lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;. &lt;br /&gt; &lt;br /&gt;&lt;b&gt;My blog&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;More info is on &lt;a href="http://robburke.net" class="externalLink"&gt;my blog at robburke.net &lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.  Please feel free to contact me through the blog for more information.  If you have feature requests, I'd be grateful if you added them to the Issue Tracker here on CodePlex.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Download&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;You can download the latest version of NLarge through the &lt;a href="http://www.codeplex.com/NLarge/Release/ProjectReleases.aspx" class="externalLink"&gt;Releases page &lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;/div&gt;</description><author>robburke</author><pubDate>Sat, 05 Apr 2008 14:51:45 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080405025145P</guid></item><item><title>Source code checked in</title><link>http://www.codeplex.com/NLarge/SourceControl/ListDownloadableCommits.aspx</link><description>Branched v1.13.  Fixed a bug that caused strange behavior on multimon systems after hibernate&amp;#47;restart.</description><author>robburke</author><pubDate>Sat, 05 Apr 2008 14:35:22 GMT</pubDate><guid isPermaLink="false">Source code checked in 20080405023522P</guid></item><item><title>UPDATED RELEASE: NLarge v1.03 Release (Feb 24, 2007)</title><link>http://www.codeplex.com/NLarge/Release/ProjectReleases.aspx?ReleaseId=2010</link><description>v1.03 stable release.</description><author></author><pubDate>Sat, 05 Apr 2008 14:29:34 GMT</pubDate><guid isPermaLink="false">UPDATED RELEASE: NLarge v1.03 Release (Feb 24, 2007) 20080405022934P</guid></item><item><title>UPDATED RELEASE: NLarge v1.1.3 Release (Apr 05, 2008)</title><link>http://www.codeplex.com/NLarge/Release/ProjectReleases.aspx?ReleaseId=12287</link><description>v1.1.3 Release</description><author></author><pubDate>Sat, 05 Apr 2008 14:27:40 GMT</pubDate><guid isPermaLink="false">UPDATED RELEASE: NLarge v1.1.3 Release (Apr 05, 2008) 20080405022740P</guid></item><item><title>CREATED RELEASE: NLarge v1.1.3 Release (Apr 05, 2008)</title><link>http://www.codeplex.com/NLarge/Release/ProjectReleases.aspx?ReleaseId=12287</link><description>v1.1.3 Release</description><author></author><pubDate>Sat, 05 Apr 2008 14:27:09 GMT</pubDate><guid isPermaLink="false">CREATED RELEASE: NLarge v1.1.3 Release (Apr 05, 2008) 20080405022709P</guid></item><item><title>Source code checked in</title><link>http://www.codeplex.com/NLarge/SourceControl/ListDownloadableCommits.aspx</link><description>Version 1.3 - changed manner of going fullscreen to fix funny bug on Hibernate&amp;#47;restore</description><author>robburke</author><pubDate>Sat, 05 Apr 2008 14:23:39 GMT</pubDate><guid isPermaLink="false">Source code checked in 20080405022339P</guid></item><item><title>NEW POST: Feature Request: Ability to draw straight lines</title><link>http://www.codeplex.com/NLarge/Thread/View.aspx?ThreadId=17281</link><description>&lt;div class="wikidoc"&gt;
&lt;div class="quote"&gt;
 &lt;br /&gt;gsmithferrier wrote:&lt;br /&gt;I would find it very helpful if I could hold the shift or ctrl or alt key down and have NLarge draw a straight line when I draw with the mouse. I would also find it helpful to draw an ellipse instead of my rather tragic attempts that just end up looking like scribble.&lt;br /&gt; &lt;br /&gt;
&lt;/div&gt;It's a really good idea.  I'm using the InkCanvas for drawing.  Maybe someone could figure out how to make the InkCanvas draw a straight line?&lt;br /&gt;
&lt;/div&gt;</description><author>robburke</author><pubDate>Thu, 27 Mar 2008 20:09:04 GMT</pubDate><guid isPermaLink="false">NEW POST: Feature Request: Ability to draw straight lines 20080327080904P</guid></item><item><title>UPDATED RELEASE: NLarge v1.1.2 Release (Mar 27, 2008)</title><link>http://www.codeplex.com/NLarge/Release/ProjectReleases.aspx?ReleaseId=12018</link><description>v1.1.2 Release</description><author></author><pubDate>Thu, 27 Mar 2008 14:06:36 GMT</pubDate><guid isPermaLink="false">UPDATED RELEASE: NLarge v1.1.2 Release (Mar 27, 2008) 20080327020636P</guid></item><item><title>Source code checked in</title><link>http://www.codeplex.com/NLarge/SourceControl/ListDownloadableCommits.aspx</link><description>Fixed bug where zoom window is not properly maximized after hibernate</description><author>robburke</author><pubDate>Thu, 27 Mar 2008 14:05:00 GMT</pubDate><guid isPermaLink="false">Source code checked in 20080327020500P</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/NLarge/Wiki/View.aspx?title=Home&amp;version=9</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;NLarge Project Home Page&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;NLarge is a little utility for technical presentations.  It magnifies the screen through a smooth animation, and allows you to pan and zoom around the magnified screen.  You can annotate the magnified image using the mouse or a Tablet PC pen.  You can also annotate with text.&lt;br /&gt; &lt;br /&gt;NLarge runs from your system tray, and is triggered by a hotkey (Ctrl-1 by default). &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Compatibility&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;Because NLarge is built with the Windows Presentation Foundation, it runs on Windows Vista and Windows Server 2008, and will also work on Windows XP and Server 2003 if you install the &lt;a href="http://www.netfx3.com/" class="externalLink"&gt;.NET Framework version 3.0 &lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; (a free download).  &lt;br /&gt; &lt;br /&gt;&lt;b&gt;My blog&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;More info is on &lt;a href="http://robburke.net" class="externalLink"&gt;my blog &lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.  Please feel free to contact me through the blog for more information.  If you have feature requests, I'd be grateful if you added them to the Issue Tracker here on CodePlex.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Download&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;You can download the latest version of NLarge through the &lt;a href="http://www.codeplex.com/NLarge/Release/ProjectReleases.aspx" class="externalLink"&gt;Releases page &lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;/div&gt;</description><author>robburke</author><pubDate>Thu, 27 Mar 2008 06:28:45 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080327062845A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/NLarge/Wiki/View.aspx?title=Home&amp;version=8</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;NLarge Project Home Page&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;NLarge is a little utility for technical presentations.  It magnifies the screen through a smooth animation, and allows you to pan and zoom around the magnified screen.  You can annotate the magnified image using the mouse or a Tablet PC pen.  You can also annotate with text.&lt;br /&gt; &lt;br /&gt;NLarge runs from your system tray, and is triggered by a hotkey (Ctrl-1 by default). &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Compatibility&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;Because NLarge is built with the Windows Presentation Foundation, it runs on Windows Vista and Windows Server 2008, and will also work on Windows XP and Server 2003 if you install the &lt;a href="http://www.netfx3.com/" class="externalLink"&gt;.NET Framework version 3.0 &lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; (a free download).  &lt;br /&gt; &lt;br /&gt;&lt;b&gt;My blog&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;More info is on &lt;a href="http://robburke.net" class="externalLink"&gt;my blog &lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.  Please feel free to contact me through the blog for more information.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Download&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;You can download the latest version of NLarge through the &lt;a href="http://www.codeplex.com/NLarge/Release/ProjectReleases.aspx" class="externalLink"&gt;Releases page &lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;/div&gt;</description><author>robburke</author><pubDate>Thu, 27 Mar 2008 06:28:18 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080327062818A</guid></item><item><title>UPDATED WIKI: Home</title><link>http://www.codeplex.com/NLarge/Wiki/View.aspx?title=Home&amp;version=7</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;NLarge Project Home Page&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;NLarge is a little utility for technical presentations.  It magnifies the screen through a smooth animation, and allows you to pan and zoom around the magnified screen.  You can annotate the magnified image using the mouse or a Tablet PC pen.  &lt;br /&gt; &lt;br /&gt;NLarge runs from your system tray, and is triggered by a hotkey (Ctrl-1 by default). &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Compatibility&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;Because NLarge is built with the Windows Presentation Foundation, it runs on Windows Vista, and will also work on Windows XP and Server 2003/2008 if you install the &lt;a href="http://www.netfx3.com/" class="externalLink"&gt;.NET Framework version 3.0 &lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; (a free download).  &lt;br /&gt; &lt;br /&gt;&lt;b&gt;My blog&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;More info is on &lt;a href="http://robburke.net" class="externalLink"&gt;my blog &lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Download&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;You can download the latest version of NLarge through the &lt;a href="http://www.codeplex.com/NLarge/Release/ProjectReleases.aspx" class="externalLink"&gt;Releases page &lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;
&lt;/div&gt;</description><author>robburke</author><pubDate>Thu, 27 Mar 2008 06:11:28 GMT</pubDate><guid isPermaLink="false">UPDATED WIKI: Home 20080327061128A</guid></item><item><title>Source code checked in</title><link>http://www.codeplex.com/NLarge/SourceControl/ListDownloadableCommits.aspx</link><description>Branched v1.12 Release</description><author>robburke</author><pubDate>Thu, 27 Mar 2008 06:09:48 GMT</pubDate><guid isPermaLink="false">Source code checked in 20080327060948A</guid></item></channel></rss>