<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>WFPBookReader Issue Tracker Rss Feed</title><link>http://wfpbookreader.codeplex.com/WorkItem/List.aspx</link><description>WFPBookReader Issue Tracker Rss Description</description><item><title>Closed Issue: CTRL-TAB Focus problem/solution [12842]</title><link>http://wfpbookreader.codeplex.com/workitem/12842</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I found that the Comic Book Reader suffers the same CTRL-TAB problem that I previously experienced in Edi.&lt;br /&gt;The solution to getting CTRL-TAB to work as expected is to set a default keyboard focus within the document view. One simple solution is to have a textbox and the FocusManager acquire focus on that textbox by default.&lt;br /&gt;&lt;br /&gt;Documents usually have no textbox so I found a better solution, which is an attached property &amp;#40;see attachment&amp;#41;. You can use it like this in your view&amp;#58;&lt;br /&gt;&lt;br /&gt;... UserControl x&amp;#58;Class&amp;#61;&amp;#34;Edi.View.StartPage&amp;#34; ...&lt;br /&gt;&lt;br /&gt;             Focusable&amp;#61;&amp;#34;True&amp;#34;&lt;br /&gt;             KeyboardNavigation.IsTabStop&amp;#61;&amp;#34;True&amp;#34;&lt;br /&gt;             Name&amp;#61;&amp;#34;StartPageView&amp;#34;&lt;br /&gt;             behav&amp;#58;KeyboardFocus.On&amp;#61;&amp;#34;&amp;#123;Binding ElementName&amp;#61;StartPageView&amp;#125;&amp;#34;&lt;br /&gt;&lt;br /&gt;Your app is pretty cool by the way so I hope this improves the experience for those who use the keyboard &amp;#40;as I often do...&amp;#41;&lt;br /&gt;Comments: Fixed</description><author>TheCamel</author><pubDate>Fri, 08 Mar 2013 12:26:24 GMT</pubDate><guid isPermaLink="false">Closed Issue: CTRL-TAB Focus problem/solution [12842] 20130308122624P</guid></item><item><title>Commented Issue: CTRL-TAB Focus problem/solution [12842]</title><link>http://wfpbookreader.codeplex.com/workitem/12842</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I found that the Comic Book Reader suffers the same CTRL-TAB problem that I previously experienced in Edi.&lt;br /&gt;The solution to getting CTRL-TAB to work as expected is to set a default keyboard focus within the document view. One simple solution is to have a textbox and the FocusManager acquire focus on that textbox by default.&lt;br /&gt;&lt;br /&gt;Documents usually have no textbox so I found a better solution, which is an attached property &amp;#40;see attachment&amp;#41;. You can use it like this in your view&amp;#58;&lt;br /&gt;&lt;br /&gt;... UserControl x&amp;#58;Class&amp;#61;&amp;#34;Edi.View.StartPage&amp;#34; ...&lt;br /&gt;&lt;br /&gt;             Focusable&amp;#61;&amp;#34;True&amp;#34;&lt;br /&gt;             KeyboardNavigation.IsTabStop&amp;#61;&amp;#34;True&amp;#34;&lt;br /&gt;             Name&amp;#61;&amp;#34;StartPageView&amp;#34;&lt;br /&gt;             behav&amp;#58;KeyboardFocus.On&amp;#61;&amp;#34;&amp;#123;Binding ElementName&amp;#61;StartPageView&amp;#125;&amp;#34;&lt;br /&gt;&lt;br /&gt;Your app is pretty cool by the way so I hope this improves the experience for those who use the keyboard &amp;#40;as I often do...&amp;#41;&lt;br /&gt;Comments: ** Comment from web user: TheCamel ** &lt;p&gt;I manage that way....&lt;/p&gt;&lt;p&gt;public static class VisualHelper&lt;br&gt;    {&lt;br&gt;        public static void AllowFocus(UIElement element)&lt;br&gt;        {&lt;br&gt;            if (!System.ComponentModel.DesignerProperties.GetIsInDesignMode(element))&lt;br&gt;            {&lt;br&gt;                element.Focusable = true;&lt;br&gt;                element.SetValue(KeyboardNavigation.IsTabStopProperty, true);&lt;br&gt;                element.SetValue(KeyboardFocus.OnProperty, element);&lt;br&gt;            }&lt;br&gt;        }&lt;/p&gt;&lt;p&gt;just need to call in view constructors for documents only&lt;/p&gt;&lt;p&gt;VisualHelper.AllowFocus(this);&lt;/p&gt;&lt;p&gt;works for all view types&lt;br&gt;no need to give name or create controls&lt;/p&gt;&lt;p&gt;Thanks to you...will be published soon&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><author>TheCamel</author><pubDate>Thu, 07 Mar 2013 12:53:48 GMT</pubDate><guid isPermaLink="false">Commented Issue: CTRL-TAB Focus problem/solution [12842] 20130307125348P</guid></item><item><title>Commented Issue: CTRL-TAB Focus problem/solution [12842]</title><link>http://wfpbookreader.codeplex.com/workitem/12842</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I found that the Comic Book Reader suffers the same CTRL-TAB problem that I previously experienced in Edi.&lt;br /&gt;The solution to getting CTRL-TAB to work as expected is to set a default keyboard focus within the document view. One simple solution is to have a textbox and the FocusManager acquire focus on that textbox by default.&lt;br /&gt;&lt;br /&gt;Documents usually have no textbox so I found a better solution, which is an attached property &amp;#40;see attachment&amp;#41;. You can use it like this in your view&amp;#58;&lt;br /&gt;&lt;br /&gt;... UserControl x&amp;#58;Class&amp;#61;&amp;#34;Edi.View.StartPage&amp;#34; ...&lt;br /&gt;&lt;br /&gt;             Focusable&amp;#61;&amp;#34;True&amp;#34;&lt;br /&gt;             KeyboardNavigation.IsTabStop&amp;#61;&amp;#34;True&amp;#34;&lt;br /&gt;             Name&amp;#61;&amp;#34;StartPageView&amp;#34;&lt;br /&gt;             behav&amp;#58;KeyboardFocus.On&amp;#61;&amp;#34;&amp;#123;Binding ElementName&amp;#61;StartPageView&amp;#125;&amp;#34;&lt;br /&gt;&lt;br /&gt;Your app is pretty cool by the way so I hope this improves the experience for those who use the keyboard &amp;#40;as I often do...&amp;#41;&lt;br /&gt;Comments: ** Comment from web user: dirkster ** &lt;p&gt;Yes I would recommend this for all types of documents. You can also verify this in a codeproject article where I discuss this problem in more depth:&lt;/p&gt;&lt;p&gt;http://www.codeproject.com/Articles/483533/AvalonDock-2-0-Tutorial-Part-2-Adding-a-Start-Page&lt;br&gt;&lt;/p&gt;</description><author>dirkster</author><pubDate>Wed, 06 Mar 2013 23:25:40 GMT</pubDate><guid isPermaLink="false">Commented Issue: CTRL-TAB Focus problem/solution [12842] 20130306112540P</guid></item><item><title>Commented Issue: CTRL-TAB Focus problem/solution [12842]</title><link>http://wfpbookreader.codeplex.com/workitem/12842</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I found that the Comic Book Reader suffers the same CTRL-TAB problem that I previously experienced in Edi.&lt;br /&gt;The solution to getting CTRL-TAB to work as expected is to set a default keyboard focus within the document view. One simple solution is to have a textbox and the FocusManager acquire focus on that textbox by default.&lt;br /&gt;&lt;br /&gt;Documents usually have no textbox so I found a better solution, which is an attached property &amp;#40;see attachment&amp;#41;. You can use it like this in your view&amp;#58;&lt;br /&gt;&lt;br /&gt;... UserControl x&amp;#58;Class&amp;#61;&amp;#34;Edi.View.StartPage&amp;#34; ...&lt;br /&gt;&lt;br /&gt;             Focusable&amp;#61;&amp;#34;True&amp;#34;&lt;br /&gt;             KeyboardNavigation.IsTabStop&amp;#61;&amp;#34;True&amp;#34;&lt;br /&gt;             Name&amp;#61;&amp;#34;StartPageView&amp;#34;&lt;br /&gt;             behav&amp;#58;KeyboardFocus.On&amp;#61;&amp;#34;&amp;#123;Binding ElementName&amp;#61;StartPageView&amp;#125;&amp;#34;&lt;br /&gt;&lt;br /&gt;Your app is pretty cool by the way so I hope this improves the experience for those who use the keyboard &amp;#40;as I often do...&amp;#41;&lt;br /&gt;Comments: ** Comment from web user: TheCamel ** &lt;p&gt;ok, solved, I took the good file from your project&lt;br&gt;should I do that for all type of document ??&lt;/p&gt;</description><author>TheCamel</author><pubDate>Wed, 06 Mar 2013 22:47:24 GMT</pubDate><guid isPermaLink="false">Commented Issue: CTRL-TAB Focus problem/solution [12842] 20130306104724P</guid></item><item><title>Commented Issue: CTRL-TAB Focus problem/solution [12842]</title><link>http://wfpbookreader.codeplex.com/workitem/12842</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I found that the Comic Book Reader suffers the same CTRL-TAB problem that I previously experienced in Edi.&lt;br /&gt;The solution to getting CTRL-TAB to work as expected is to set a default keyboard focus within the document view. One simple solution is to have a textbox and the FocusManager acquire focus on that textbox by default.&lt;br /&gt;&lt;br /&gt;Documents usually have no textbox so I found a better solution, which is an attached property &amp;#40;see attachment&amp;#41;. You can use it like this in your view&amp;#58;&lt;br /&gt;&lt;br /&gt;... UserControl x&amp;#58;Class&amp;#61;&amp;#34;Edi.View.StartPage&amp;#34; ...&lt;br /&gt;&lt;br /&gt;             Focusable&amp;#61;&amp;#34;True&amp;#34;&lt;br /&gt;             KeyboardNavigation.IsTabStop&amp;#61;&amp;#34;True&amp;#34;&lt;br /&gt;             Name&amp;#61;&amp;#34;StartPageView&amp;#34;&lt;br /&gt;             behav&amp;#58;KeyboardFocus.On&amp;#61;&amp;#34;&amp;#123;Binding ElementName&amp;#61;StartPageView&amp;#125;&amp;#34;&lt;br /&gt;&lt;br /&gt;Your app is pretty cool by the way so I hope this improves the experience for those who use the keyboard &amp;#40;as I often do...&amp;#41;&lt;br /&gt;Comments: ** Comment from web user: TheCamel ** &lt;p&gt;Hi, there is something missing in what you submit...?&lt;br&gt;KeyboardFocus.On ??&lt;/p&gt;</description><author>TheCamel</author><pubDate>Wed, 06 Mar 2013 22:30:19 GMT</pubDate><guid isPermaLink="false">Commented Issue: CTRL-TAB Focus problem/solution [12842] 20130306103019P</guid></item><item><title>Commented Issue: CTRL-TAB Focus problem/solution [12842]</title><link>http://wfpbookreader.codeplex.com/workitem/12842</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I found that the Comic Book Reader suffers the same CTRL-TAB problem that I previously experienced in Edi.&lt;br /&gt;The solution to getting CTRL-TAB to work as expected is to set a default keyboard focus within the document view. One simple solution is to have a textbox and the FocusManager acquire focus on that textbox by default.&lt;br /&gt;&lt;br /&gt;Documents usually have no textbox so I found a better solution, which is an attached property &amp;#40;see attachment&amp;#41;. You can use it like this in your view&amp;#58;&lt;br /&gt;&lt;br /&gt;... UserControl x&amp;#58;Class&amp;#61;&amp;#34;Edi.View.StartPage&amp;#34; ...&lt;br /&gt;&lt;br /&gt;             Focusable&amp;#61;&amp;#34;True&amp;#34;&lt;br /&gt;             KeyboardNavigation.IsTabStop&amp;#61;&amp;#34;True&amp;#34;&lt;br /&gt;             Name&amp;#61;&amp;#34;StartPageView&amp;#34;&lt;br /&gt;             behav&amp;#58;KeyboardFocus.On&amp;#61;&amp;#34;&amp;#123;Binding ElementName&amp;#61;StartPageView&amp;#125;&amp;#34;&lt;br /&gt;&lt;br /&gt;Your app is pretty cool by the way so I hope this improves the experience for those who use the keyboard &amp;#40;as I often do...&amp;#41;&lt;br /&gt;Comments: ** Comment from web user: TheCamel ** &lt;p&gt;Thanks for your contribution and very appreciated comments.&lt;br&gt;I never saw before that Avalon displays a tab+ctrl dialog with documents....:-)&lt;br&gt;Will include that in the next version&lt;br&gt;but I am very busy with CBR.WinRT and trying to communicate with...&lt;br&gt;Thanks&lt;/p&gt;</description><author>TheCamel</author><pubDate>Wed, 06 Mar 2013 22:02:41 GMT</pubDate><guid isPermaLink="false">Commented Issue: CTRL-TAB Focus problem/solution [12842] 20130306100241P</guid></item><item><title>Created Issue: CTRL-TAB Focus problem/solution [12842]</title><link>http://wfpbookreader.codeplex.com/workitem/12842</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I found that the Comic Book Reader suffers the same CTRL-TAB problem that I previously experienced in Edi.&lt;br /&gt;The solution to getting CTRL-TAB to work as expected is to set a default keyboard focus within the document view. One simple solution is to have a textbox and the FocusManager acquire focus on that textbox by default.&lt;br /&gt;&lt;br /&gt;Documents usually have no textbox so I found a better solution, which is an attached property &amp;#40;see attachment&amp;#41;. You can use it like this in your view&amp;#58;&lt;br /&gt;&lt;br /&gt;... UserControl x&amp;#58;Class&amp;#61;&amp;#34;Edi.View.StartPage&amp;#34; ...&lt;br /&gt;             Name&amp;#61;&amp;#34;StartPageView&amp;#34;&lt;br /&gt;             behav&amp;#58;KeyboardFocus.On&amp;#61;&amp;#34;&amp;#123;Binding ElementName&amp;#61;StartPageView&amp;#125;&amp;#34;&lt;br /&gt;&lt;br /&gt;Your app is pretty cool by the way so I hope this improves the experience for those who use the keayboard &amp;#40;as I often do...&amp;#41;&lt;br /&gt;</description><author>dirkster</author><pubDate>Wed, 27 Feb 2013 17:54:01 GMT</pubDate><guid isPermaLink="false">Created Issue: CTRL-TAB Focus problem/solution [12842] 20130227055401P</guid></item><item><title>Closed Issue: avalon [12526]</title><link>http://wfpbookreader.codeplex.com/workitem/12526</link><description>integrate new release &amp;#63;&lt;br /&gt;Comments: Resolved with changeset 82989.</description><author>TheCamel</author><pubDate>Sun, 11 Nov 2012 12:56:19 GMT</pubDate><guid isPermaLink="false">Closed Issue: avalon [12526] 20121111125619P</guid></item><item><title>Closed Feature: study this to not have to rewrite avalondock each time [12506]</title><link>http://wfpbookreader.codeplex.com/workitem/12506</link><description>http&amp;#58;&amp;#47;&amp;#47;www.codeproject.com&amp;#47;Articles&amp;#47;460989&amp;#47;WPF-TabControl-Turning-Off-Tab-Virtualization&lt;br /&gt;Comments: Resolved with changeset 82989.</description><author>TheCamel</author><pubDate>Sun, 11 Nov 2012 12:56:19 GMT</pubDate><guid isPermaLink="false">Closed Feature: study this to not have to rewrite avalondock each time [12506] 20121111125619P</guid></item><item><title>Closed Issue: bug for home in tab context menu [12524]</title><link>http://wfpbookreader.codeplex.com/workitem/12524</link><description>&amp;#63;&amp;#63;&lt;br /&gt;Comments: Resolved with changeset 82989.</description><author>TheCamel</author><pubDate>Sun, 11 Nov 2012 12:56:16 GMT</pubDate><guid isPermaLink="false">Closed Issue: bug for home in tab context menu [12524] 20121111125616P</guid></item><item><title>Closed Feature: Filter Control [12352]</title><link>http://wfpbookreader.codeplex.com/workitem/12352</link><description>add dependency property to customize the image on the FilterControl.&lt;br /&gt;</description><author>TheCamel</author><pubDate>Mon, 05 Nov 2012 19:37:31 GMT</pubDate><guid isPermaLink="false">Closed Feature: Filter Control [12352] 20121105073731P</guid></item><item><title>Closed Issue: spinner button design to finish [12529]</title><link>http://wfpbookreader.codeplex.com/workitem/12529</link><description>remove border&lt;br /&gt;Comments: Resolved with changeset 82813.</description><author>TheCamel</author><pubDate>Mon, 05 Nov 2012 18:56:07 GMT</pubDate><guid isPermaLink="false">Closed Issue: spinner button design to finish [12529] 20121105065607P</guid></item><item><title>Closed Issue: add translate / localize on the progress messages from the converter and for datatemplate [12498]</title><link>http://wfpbookreader.codeplex.com/workitem/12498</link><description>replace by call to CultureManager and create ByCode keys&lt;br /&gt;Comments: Resolved with changeset 82813.</description><author>TheCamel</author><pubDate>Mon, 05 Nov 2012 18:56:06 GMT</pubDate><guid isPermaLink="false">Closed Issue: add translate / localize on the progress messages from the converter and for datatemplate [12498] 20121105065606P</guid></item><item><title>Closed Feature: context menu on pages [11674]</title><link>http://wfpbookreader.codeplex.com/workitem/11674</link><description>&lt;br /&gt;Comments: Resolved with changeset 82813.</description><author>TheCamel</author><pubDate>Mon, 05 Nov 2012 18:56:03 GMT</pubDate><guid isPermaLink="false">Closed Feature: context menu on pages [11674] 20121105065603P</guid></item><item><title>Created Issue: support for plain text [12544]</title><link>http://wfpbookreader.codeplex.com/workitem/12544</link><description>add editor and type&lt;br /&gt;</description><author>TheCamel</author><pubDate>Mon, 05 Nov 2012 18:21:44 GMT</pubDate><guid isPermaLink="false">Created Issue: support for plain text [12544] 20121105062144P</guid></item><item><title>Closed Feature: Add a layout reset command [12420]</title><link>http://wfpbookreader.codeplex.com/workitem/12420</link><description>reset quick access item in ribbon and avalon file&lt;br /&gt;</description><author>TheCamel</author><pubDate>Wed, 31 Oct 2012 12:23:12 GMT</pubDate><guid isPermaLink="false">Closed Feature: Add a layout reset command [12420] 20121031122312P</guid></item><item><title>Closed Issue: add PDF icon for cover [12523]</title><link>http://wfpbookreader.codeplex.com/workitem/12523</link><description>find good way to manage that&lt;br /&gt;</description><author>TheCamel</author><pubDate>Wed, 31 Oct 2012 12:23:12 GMT</pubDate><guid isPermaLink="false">Closed Issue: add PDF icon for cover [12523] 20121031122312P</guid></item><item><title>Created Feature: table of content for comics and others [12528]</title><link>http://wfpbookreader.codeplex.com/workitem/12528</link><description>add simple list view &amp;#43; tree if multi volume &amp;#43; thumbs&lt;br /&gt;</description><author>TheCamel</author><pubDate>Wed, 31 Oct 2012 12:23:12 GMT</pubDate><guid isPermaLink="false">Created Feature: table of content for comics and others [12528] 20121031122312P</guid></item><item><title>Created Issue: spinner button design to finish [12529]</title><link>http://wfpbookreader.codeplex.com/workitem/12529</link><description>remove border&lt;br /&gt;</description><author>TheCamel</author><pubDate>Wed, 31 Oct 2012 12:23:12 GMT</pubDate><guid isPermaLink="false">Created Issue: spinner button design to finish [12529] 20121031122312P</guid></item><item><title>Created Issue: extract dynamic zone from ribbon [12530]</title><link>http://wfpbookreader.codeplex.com/workitem/12530</link><description>create a tab for editing&lt;br /&gt;</description><author>TheCamel</author><pubDate>Wed, 31 Oct 2012 12:23:12 GMT</pubDate><guid isPermaLink="false">Created Issue: extract dynamic zone from ribbon [12530] 20121031122312P</guid></item></channel></rss>