<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>waf Issue Tracker Rss Feed</title><link>http://waf.codeplex.com/WorkItem/List.aspx</link><description>waf Issue Tracker Rss Description</description><item><title>Closed Issue: BookLibrary: Backspace in a cell doesn't produce a validation error. [7106]</title><link>http://waf.codeplex.com/workitem/7106</link><description>Steps to reproduce&amp;#58;&lt;br /&gt;1. Start BookLibrary sample application&lt;br /&gt;2. Select the first cell in the DataGrid &amp;#40;title of the first book&amp;#41;&lt;br /&gt;3. Press the Backspace key&lt;br /&gt;4. Press the Tab key to commit the change&lt;br /&gt; &lt;br /&gt;No validation error is visible. But it should be shown because the Title property is defined as Required.&lt;br /&gt;</description><author>jbe2277</author><pubDate>Thu, 16 May 2013 11:50:43 GMT</pubDate><guid isPermaLink="false">Closed Issue: BookLibrary: Backspace in a cell doesn't produce a validation error. [7106] 20130516115043A</guid></item><item><title>Closed Issue: WAF Template installer not compatible with VS11 Beta [7808]</title><link>http://waf.codeplex.com/workitem/7808</link><description>The WAF Template installer is not compatible with VS11 Beta. It cannot be installed.&lt;br /&gt;</description><author>jbe2277</author><pubDate>Thu, 16 May 2013 11:50:42 GMT</pubDate><guid isPermaLink="false">Closed Issue: WAF Template installer not compatible with VS11 Beta [7808] 20130516115042A</guid></item><item><title>Closed Issue: Model class SetValue does not work for nullable properties [8020]</title><link>http://waf.codeplex.com/workitem/8020</link><description>The SetValue method on System.Waf.Foundation.Model class does not support nullable types. In some scenarios, e.g. binding a three-state checkbox to a bool&amp;#63;, it would be necessary.&lt;br /&gt;</description><author>jbe2277</author><pubDate>Thu, 16 May 2013 11:50:42 GMT</pubDate><guid isPermaLink="false">Closed Issue: Model class SetValue does not work for nullable properties [8020] 20130516115042A</guid></item><item><title>Closed Issue: Error when use with Telerik RadTreeListView. [8183]</title><link>http://waf.codeplex.com/workitem/8183</link><description>This is the error when I use waf with Telerik RadTreeListView. I think DataModel class should marked a serializable, because sometime we need to serialize classes that inherits from Datamodel class. &lt;br /&gt;Best,&lt;br /&gt;Asad &lt;br /&gt;&amp;#160;&lt;br /&gt;Type &amp;#39;System.Waf.Applications.DataModel&amp;#39; in Assembly &amp;#39;WpfApplicationFramework, Version&amp;#61;2.5.0.6, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; is not marked as serializable.&lt;br /&gt;</description><author>jbe2277</author><pubDate>Thu, 16 May 2013 11:50:42 GMT</pubDate><guid isPermaLink="false">Closed Issue: Error when use with Telerik RadTreeListView. [8183] 20130516115042A</guid></item><item><title>Closed Issue: BookLibrary: edit mode lost [8478]</title><link>http://waf.codeplex.com/workitem/8478</link><description>Steps to reproduce&amp;#58;&lt;br /&gt;&lt;br /&gt;1. Start BookLibrary sample application&lt;br /&gt;&lt;br /&gt;2. Add a new book&lt;br /&gt;&lt;br /&gt;3. Click to the new row to be able to edit it but do type any character&lt;br /&gt;&lt;br /&gt;4. Click to remove button&lt;br /&gt;&lt;br /&gt;Now you cannot edit the DataGrid. It is the same with the persons.&lt;br /&gt;Maybe you should not be able to leave a non valid row&amp;#63;&lt;br /&gt;</description><author>jbe2277</author><pubDate>Thu, 16 May 2013 11:50:41 GMT</pubDate><guid isPermaLink="false">Closed Issue: BookLibrary: edit mode lost [8478] 20130516115041A</guid></item><item><title>Commented Issue: Crash adding a new record from DataGrid [8627]</title><link>http://waf.codeplex.com/workitem/8627</link><description>BookApplication, press Add to add a new book, click on Title to start editing cell, then lose focus clicking on another control &amp;#40;for example, &amp;#34;Address Book&amp;#34; tab&amp;#41; and there is an exception from line&lt;br /&gt;&lt;br /&gt;_Title &amp;#61; StructuralObject.SetValidValue&amp;#40;value, false&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;because it tries to set a null value to the Title.&lt;br /&gt;&lt;br /&gt;How can this be avoided&amp;#63;&lt;br /&gt;Comments: ** Comment from web user: gusi ** &lt;p&gt;Hi! And thanks for checking this.&lt;br&gt;You're right, I had the debugger set to halt on exceptions, but without the debugger the exception is correctly handled. Sorry for not seeing this first! :(&lt;/p&gt;</description><author>gusi</author><pubDate>Sat, 23 Mar 2013 11:26:30 GMT</pubDate><guid isPermaLink="false">Commented Issue: Crash adding a new record from DataGrid [8627] 20130323112630A</guid></item><item><title>Commented Issue: Crash adding a new record from DataGrid [8627]</title><link>http://waf.codeplex.com/workitem/8627</link><description>BookApplication, press Add to add a new book, click on Title to start editing cell, then lose focus clicking on another control &amp;#40;for example, &amp;#34;Address Book&amp;#34; tab&amp;#41; and there is an exception from line&lt;br /&gt;&lt;br /&gt;_Title &amp;#61; StructuralObject.SetValidValue&amp;#40;value, false&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;because it tries to set a null value to the Title.&lt;br /&gt;&lt;br /&gt;How can this be avoided&amp;#63;&lt;br /&gt;Comments: ** Comment from web user: jbe2277 ** &lt;p&gt;Thank you for your feedback.&lt;br&gt; &lt;br&gt;I’m able to see this exception in the Debugger but the BookLibrary application doesn’t crash. The exception is catched by the WPF Binding infrastructure. Therefore, this shouldn’t be an issue.&lt;br&gt; &lt;br&gt;The exception comes because the Title column in the database is set to Nullable = false. When the WPF Binding tries to write “null” into the property setter then this exception is thrown. You might initialize the Title and Author properties with “string.Empty” in the constructor of the Book class.&lt;br&gt; &lt;br&gt;This exception does not occur anymore in the new WAF BookLibrary sample application because now it uses the POCO approach.&lt;/p&gt;</description><author>jbe2277</author><pubDate>Sat, 23 Mar 2013 11:00:30 GMT</pubDate><guid isPermaLink="false">Commented Issue: Crash adding a new record from DataGrid [8627] 20130323110030A</guid></item><item><title>Created Issue: Crash adding a new record from DataGrid [8627]</title><link>http://waf.codeplex.com/workitem/8627</link><description>BookApplication, press Add to add a new book, click on Title to start editing cell, the lose focus clicking on another control &amp;#40;for example, &amp;#34;Address Book&amp;#34; tab&amp;#41; and there is an exception from line&lt;br /&gt;&lt;br /&gt;_Title &amp;#61; StructuralObject.SetValidValue&amp;#40;value, false&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;because it tries to set a null value to the Title.&lt;br /&gt;</description><author>gusi</author><pubDate>Wed, 13 Mar 2013 17:47:40 GMT</pubDate><guid isPermaLink="false">Created Issue: Crash adding a new record from DataGrid [8627] 20130313054740P</guid></item><item><title>Commented Issue: BookLibrary: Backspace in a cell doesn't produce a validation error. [7106]</title><link>http://waf.codeplex.com/workitem/7106</link><description>&amp;#60;p&amp;#62;Steps to reproduce&amp;#58;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;1. Start BookLibrary sample application&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;2. Select the first cell in the DataGrid &amp;#40;title of the first book&amp;#41;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;3. Press the Backspace key&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;4. Press the Tab key to commit the change&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62; &amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;No validation error is visible. But it should be shown because the Title property is defined as Required.&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;Comments: ** Comment from web user: jbe2277 ** &lt;p&gt;This issue has been fixed in the .NET Framework 4.5.&lt;/p&gt;</description><author>jbe2277</author><pubDate>Sun, 03 Feb 2013 14:23:56 GMT</pubDate><guid isPermaLink="false">Commented Issue: BookLibrary: Backspace in a cell doesn't produce a validation error. [7106] 20130203022356P</guid></item><item><title>Commented Issue: Model class SetValue does not work for nullable properties [8020]</title><link>http://waf.codeplex.com/workitem/8020</link><description>&amp;#60;p&amp;#62;The SetValue method on System.Waf.Foundation.Model class does not support nullable types. In some scenarios, e.g. binding a three-state checkbox to a bool&amp;#63;, it would be necessary.&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;Comments: ** Comment from web user: jbe2277 ** &lt;p&gt;This issue is fixed in the WPF Application Framework (WAF) 3.0.0.2 version.&lt;/p&gt;</description><author>jbe2277</author><pubDate>Sun, 03 Feb 2013 14:19:46 GMT</pubDate><guid isPermaLink="false">Commented Issue: Model class SetValue does not work for nullable properties [8020] 20130203021946P</guid></item><item><title>Commented Issue: Add strong name to the assemblies [8472]</title><link>http://waf.codeplex.com/workitem/8472</link><description>The WAF assemblies do not have strong names, so no strongly named assembly can reference them.&lt;br /&gt;Comments: ** Comment from web user: kamingbb ** &lt;p&gt;Thank you very much. This messasge also answered my question.&lt;/p&gt;&lt;p&gt;I also would like to make changes on the WAF source code and build the assemblies again. Do I need to preserve those assemblies properties including the version number?&lt;/p&gt;&lt;p&gt;http://i1180.photobucket.com/albums/x404/kamingbb/WAF_zps10862014.png&lt;/p&gt;&lt;p&gt;Thanks,&lt;br&gt;Kelvin&lt;/p&gt;</description><author>kamingbb</author><pubDate>Wed, 30 Jan 2013 02:59:18 GMT</pubDate><guid isPermaLink="false">Commented Issue: Add strong name to the assemblies [8472] 20130130025918A</guid></item><item><title>Commented Issue: BookLibrary: edit mode lost [8478]</title><link>http://waf.codeplex.com/workitem/8478</link><description>Steps to reproduce&amp;#58;&lt;br /&gt;&lt;br /&gt;1. Start BookLibrary sample application&lt;br /&gt;&lt;br /&gt;2. Add a new book&lt;br /&gt;&lt;br /&gt;3. Click to the new row to be able to edit it but do type any character&lt;br /&gt;&lt;br /&gt;4. Click to remove button&lt;br /&gt;&lt;br /&gt;Now you cannot edit the DataGrid. It is the same with the persons.&lt;br /&gt;Maybe you should not be able to leave a non valid row&amp;#63;&lt;br /&gt;Comments: ** Comment from web user: jbe2277 ** &lt;p&gt;Thank you for your feedback.&lt;br&gt; &lt;br&gt;I will address this issue in one of the next WAF releases.&lt;br&gt; &lt;br&gt;Related Issue: http://waf.codeplex.com/discussions/395376&lt;/p&gt;</description><author>jbe2277</author><pubDate>Mon, 31 Dec 2012 16:27:03 GMT</pubDate><guid isPermaLink="false">Commented Issue: BookLibrary: edit mode lost [8478] 20121231042703P</guid></item><item><title>Commented Issue: Add strong name to the assemblies [8472]</title><link>http://waf.codeplex.com/workitem/8472</link><description>The WAF assemblies do not have strong names, so no strongly named assembly can reference them.&lt;br /&gt;Comments: ** Comment from web user: jbe2277 ** &lt;p&gt;Thank you for your feedback.&lt;br&gt; &lt;br&gt;I will consider signing the WAF assemblies in the next major release.&lt;br&gt; &lt;br&gt;Workaround: Take the WAF source code and build it together with our own projects. This way you can take your own private key to sign the WAF assemblies with strong names.&lt;/p&gt;</description><author>jbe2277</author><pubDate>Mon, 31 Dec 2012 16:23:43 GMT</pubDate><guid isPermaLink="false">Commented Issue: Add strong name to the assemblies [8472] 20121231042343P</guid></item><item><title>Commented Issue: BookLibrary: edit mode lost [8478]</title><link>http://waf.codeplex.com/workitem/8478</link><description>Steps to reproduce&amp;#58;&lt;br /&gt;&lt;br /&gt;1. Start BookLibrary sample application&lt;br /&gt;&lt;br /&gt;2. Add a new book&lt;br /&gt;&lt;br /&gt;3. Click to the new row to be able to edit it but do type any character&lt;br /&gt;&lt;br /&gt;4. Click to remove button&lt;br /&gt;&lt;br /&gt;Now you cannot edit the DataGrid. It is the same with the persons.&lt;br /&gt;Maybe you should not be able to leave a non valid row&amp;#63;&lt;br /&gt;Comments: ** Comment from web user: Lysander83 ** &lt;p&gt;The solution:&lt;br&gt;- Add the following code to the remove button click event handler:&lt;br&gt;    bookTable.CancelEdit(DataGridEditingUnit.Row);&lt;/p&gt;</description><author>Lysander83</author><pubDate>Wed, 26 Dec 2012 12:27:04 GMT</pubDate><guid isPermaLink="false">Commented Issue: BookLibrary: edit mode lost [8478] 20121226122704P</guid></item><item><title>Created Issue: BookLibrary: edit mode lost [8478]</title><link>http://waf.codeplex.com/workitem/8478</link><description>Steps to reproduce&amp;#58;&lt;br /&gt;&lt;br /&gt;1. Start BookLibrary sample application&lt;br /&gt;&lt;br /&gt;2. Add a new book&lt;br /&gt;&lt;br /&gt;3. Click to the new row to be able to edit it but do type any character&lt;br /&gt;&lt;br /&gt;4. Click to remove button&lt;br /&gt;&lt;br /&gt;Now you cannot edit the DataGrid. It is the same with the persons.&lt;br /&gt;Maybe you should not be able to leave a non valid row&amp;#63;&lt;br /&gt;</description><author>Lysander83</author><pubDate>Wed, 26 Dec 2012 11:59:11 GMT</pubDate><guid isPermaLink="false">Created Issue: BookLibrary: edit mode lost [8478] 20121226115911A</guid></item><item><title>Created Issue: Add strong name to the assemblies [8472]</title><link>http://waf.codeplex.com/workitem/8472</link><description>The WAF assemblies do not have strong names, so no strongly named assembly can reference them.&lt;br /&gt;</description><author>pepos</author><pubDate>Fri, 21 Dec 2012 10:35:19 GMT</pubDate><guid isPermaLink="false">Created Issue: Add strong name to the assemblies [8472] 20121221103519A</guid></item><item><title>Closed Issue: WPF application (process) not closing [8340]</title><link>http://waf.codeplex.com/workitem/8340</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I have created an application through your WAF framework. Everything works fine, but there is one thing I can&amp;#39;t find.&lt;br /&gt;&lt;br /&gt;When I start the application, display some views &amp;#40;not windows&amp;#41; and then I close the application, there is no problem.&lt;br /&gt;But when I start the application, display a window and the close the window and also the application, then the application close but the process &amp;#40;...exe&amp;#41; is still running &amp;#40;verified through the task manager&amp;#41;.&lt;br /&gt;I have to manually kill the process. I have the same result when running the app through visual studio.&lt;br /&gt;&lt;br /&gt;Any ideas&amp;#63;&lt;br /&gt;&lt;br /&gt;Regards&lt;br /&gt;Comments: &lt;p&gt;I do not believe that this issue has something to do with the WPF Application Framework &amp;#40;WAF&amp;#41;. It sounds for a general WPF application issue.&lt;br /&gt; &lt;br /&gt;Possible reasons that a WPF application doesn&amp;#8217;t exit &amp;#40;just some ideas&amp;#41;&amp;#58;&lt;br /&gt; &lt;br /&gt;1. A thread is still running. Only background threads exit with the application. Other threads must be terminated first.&lt;br /&gt; &lt;br /&gt;2. A WPF view is still running. This one might be hidden.&lt;/p&gt;</description><author>jbe2277</author><pubDate>Sat, 13 Oct 2012 10:00:54 GMT</pubDate><guid isPermaLink="false">Closed Issue: WPF application (process) not closing [8340] 20121013100054A</guid></item><item><title>Created Issue: WPF application (process) not closing [8340]</title><link>http://waf.codeplex.com/workitem/8340</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I have created an application through your WAF framework. Everything works fine, but there is one thing I can&amp;#39;t find.&lt;br /&gt;&lt;br /&gt;When I start the application, display some views &amp;#40;not windows&amp;#41; and then I close the application, there is no problem.&lt;br /&gt;But when I start the application, display a window and the close the window and also the application, then the application close but the process &amp;#40;...exe&amp;#41; is still running &amp;#40;verified through the task manager&amp;#41;.&lt;br /&gt;I have to manually kill the process. I have the same result when running the app through visual studio.&lt;br /&gt;&lt;br /&gt;Any ideas&amp;#63;&lt;br /&gt;&lt;br /&gt;Regards&lt;br /&gt;</description><author>flashbeir</author><pubDate>Wed, 10 Oct 2012 15:25:04 GMT</pubDate><guid isPermaLink="false">Created Issue: WPF application (process) not closing [8340] 20121010032504P</guid></item><item><title>Commented Issue: Error when use with Telerik RadTreeListView. [8183]</title><link>http://waf.codeplex.com/workitem/8183</link><description>This is the error when I use waf with Telerik RadTreeListView. I think DataModel class should marked a serializable, because sometime we need to serialize classes that inherits from Datamodel class. &lt;br /&gt;Best,&lt;br /&gt;Asad &lt;br /&gt;&lt;br /&gt;Type &amp;#39;System.Waf.Applications.DataModel&amp;#39; in Assembly &amp;#39;WpfApplicationFramework, Version&amp;#61;2.5.0.6, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; is not marked as serializable.&lt;br /&gt;Comments: ** Comment from web user: jbe2277 ** &lt;p&gt;Thank you for submitting this issue.&lt;br /&gt; &lt;br /&gt;The base class Model is marked as serializable. Would it be possible to exchange the DataModel class with the Model class&amp;#63;&lt;br /&gt;&lt;/p&gt;</description><author>jbe2277</author><pubDate>Wed, 15 Aug 2012 12:40:17 GMT</pubDate><guid isPermaLink="false">Commented Issue: Error when use with Telerik RadTreeListView. [8183] 20120815124017P</guid></item><item><title>Created Issue: Error when use with Telerik RadTreeListView. [8183]</title><link>http://waf.codeplex.com/workitem/8183</link><description>This is the error when I use waf with Telerik RadTreeListView. I think DataModel class should marked a serializable, because sometime we need to serialize classes that inherits from Datamodel class. &lt;br /&gt;Best,&lt;br /&gt;Asad &lt;br /&gt;&lt;br /&gt;Type &amp;#39;System.Waf.Applications.DataModel&amp;#39; in Assembly &amp;#39;WpfApplicationFramework, Version&amp;#61;2.5.0.6, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;null&amp;#39; is not marked as serializable.&lt;br /&gt;</description><author>AsadSamarian</author><pubDate>Sun, 12 Aug 2012 23:12:41 GMT</pubDate><guid isPermaLink="false">Created Issue: Error when use with Telerik RadTreeListView. [8183] 20120812111241P</guid></item></channel></rss>