<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>NLarge Forum Rss Feed</title><link>http://www.codeplex.com/Project/ListForums.aspx?ProjectName=NLarge</link><description>NLarge Forum Rss Description</description><item><title>New Post: Can I use mouse?</title><link>http://nlarge.codeplex.com/Thread/View.aspx?ThreadId=215720</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I just have trial on the Nlarge, and how can I use a mouse cursor to click the menu ?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Ray&lt;/p&gt;&lt;/div&gt;</description><author>ray_linn</author><pubDate>Fri, 11 Jun 2010 12:41:25 GMT</pubDate><guid isPermaLink="false">New Post: Can I use mouse? 20100611124125P</guid></item><item><title>New Post: How about multi monitor?</title><link>http://nlarge.codeplex.com/Thread/View.aspx?ThreadId=64196</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Usually the presentations are done on external monitor and I'm not able to zoom or draw on&amp;nbsp;that monitor. It would be great if we had that functionality.&lt;/p&gt;&lt;/div&gt;</description><author>jude609</author><pubDate>Sat, 01 Aug 2009 20:43:20 GMT</pubDate><guid isPermaLink="false">New Post: How about multi monitor? 20090801084320P</guid></item><item><title>New Post: Feature Request: Ability to draw straight lines</title><link>http://nlarge.codeplex.com/Thread/View.aspx?ThreadId=17281</link><description>&lt;div style="line-height: normal;"&gt;Modified the code to include the above. Quite easy to do and it works well on 2008 (and Vista, I assume). I had to add some error handling for XP as the calls to the Ink routines throw an exception.
&lt;/div&gt;</description><author>robertgtaylor1</author><pubDate>Wed, 08 Apr 2009 19:41:39 GMT</pubDate><guid isPermaLink="false">New Post: Feature Request: Ability to draw straight lines 20090408074139P</guid></item><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>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>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>NEW POST: Feature Request: Highlighter pen</title><link>http://www.codeplex.com/NLarge/Thread/View.aspx?ThreadId=17282</link><description>&lt;div class="wikidoc"&gt;
 &lt;br /&gt;&lt;div class="quote"&gt;
 &lt;br /&gt;gsmithferrier wrote:&lt;br /&gt;I would find it very helpful to be able to have different pens for drawing. The red thin line is very useful but I would also like to be able to switch into a highlighter pen (yellow and much thicker) so I could highlight text.&lt;br /&gt; &lt;br /&gt;
&lt;/div&gt;Added this in version 1.1.  You can now choose different coloured pens and change their thickness. Thanks for the feature idea!&lt;br /&gt;
&lt;/div&gt;</description><author>robburke</author><pubDate>Tue, 25 Mar 2008 16:36:33 GMT</pubDate><guid isPermaLink="false">NEW POST: Feature Request: Highlighter pen 20080325043633P</guid></item><item><title>NEW POST: Feature Request: Highlighter pen</title><link>http://www.codeplex.com/NLarge/Thread/View.aspx?ThreadId=17282</link><description>&lt;div class="wikidoc"&gt;
I would find it very helpful to be able to have different pens for drawing. The red thin line is very useful but I would also like to be able to switch into a highlighter pen (yellow and much thicker) so I could highlight text.&lt;br /&gt;
&lt;/div&gt;</description><author>gsmithferrier</author><pubDate>Fri, 02 Nov 2007 09:43:26 GMT</pubDate><guid isPermaLink="false">NEW POST: Feature Request: Highlighter pen 20071102094326A</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;
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;/div&gt;</description><author>gsmithferrier</author><pubDate>Fri, 02 Nov 2007 09:41:48 GMT</pubDate><guid isPermaLink="false">NEW POST: Feature Request: Ability to draw straight lines 20071102094148A</guid></item><item><title>Source code not all there...: </title><link>http://www.codeplex.com/NLarge/Thread/View.aspx?ThreadId=2400</link><description>Sam, Thanks for the note.  I've managed to resolve the "missing code" issues, I think, and also even learned how to create a release which is hopefully stable :)</description><author>robburke</author><pubDate>Sun, 04 Feb 2007 19:29:48 GMT</pubDate><guid isPermaLink="false">Source code not all there...:  20070204072948P</guid></item><item><title>Developer Forum: Source code not all there...</title><link>http://www.codeplex.com/Project/DisplayThread.aspx?ProjectName=NLarge&amp;ForumId=2305&amp;ThreadId=2400&amp;ANCHOR#LastPost</link><description>The source code download only contains the "properties" subdirectory of the 1.0 release.

NLarge/release/1.0/NLarge/Properties</description><author>samjudson</author><pubDate>Thu, 16 Nov 2006 09:42:40 GMT</pubDate><guid isPermaLink="false">Developer Forum: Source code not all there... 20061116094240A</guid></item></channel></rss>