<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>AvalonControlsLibrary</title><link>http://www.codeplex.com/AvalonControlsLib/Project/ProjectRss.aspx</link><description>AvalonControlsLibrary is a set of WPF controls that can help WPF developers while developing applications. The library includes a WPF Date picker, Time Picker and loads of other stuff...</description><item><title>New Post: DataGridView SetBinding</title><link>http://www.codeplex.com/AvalonControlsLib/Thread/View.aspx?ThreadId=34988</link><description>&lt;div style="line-height: normal;"&gt;I'm trying to use the datagridview control in a eWPF browser application.&lt;br&gt;
&lt;br&gt;
I used the below code to fetch data and assign to datagridview.&lt;br&gt;
&lt;p&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;OPaLDB = New DB2Connection(&amp;quot;DB2DatabaseConnectionString&amp;quot;)&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; OPaLDB.Open()&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; Dim daDB2 As New DB2DataAdapter(&amp;quot;select * from Table&amp;quot;, OPaLDB)&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; Dim dtDB2 As New DataTable&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; daDB2.Fill(dtDB2)&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; Dim dvDB2 As DataView = dtDB2.DefaultView&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'dgvEOD.ItemsSource = dtDB2&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; Dim bDgv As New Binding&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; bDgv.Mode = BindingMode.OneWay&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; bDgv.Source = dvDB2&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; dgvEOD.SetBinding(AC.AvalonControlsLibrary.Controls.DataGridView.ItemsSourceProperty, bDgv)&lt;br&gt;
&lt;br&gt;
On the last line i get the error - AmbiguousMatchException was unhandled.&amp;nbsp; Where am i going wrong?&amp;nbsp; Any help will be appreciated.&lt;br&gt;
&lt;br&gt;
Thanks&lt;br&gt;
RV&lt;/p&gt;
&lt;/div&gt;</description><author>rrv</author><pubDate>Fri, 05 Sep 2008 06:25:46 GMT</pubDate><guid isPermaLink="false">New Post: DataGridView SetBinding 20080905062546A</guid></item><item><title>New Post: DateTimePicker issues</title><link>http://www.codeplex.com/AvalonControlsLib/Thread/View.aspx?ThreadId=33888</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br&gt;
&amp;nbsp;&amp;nbsp; I want the datetimepicker to display the seconds when the drop down is closed (it's only displaying the hours and minutes currently). Also when I click a date the drop down closes so if I want to change the time as well I either have to remember to set the time before selecting the date or open the drop down again. Can the control have an OK and Cancel button so that OK is used to close the drop down and commit the datetime change and cancel closes the drop down without updating the datetimeselected property?
&lt;/div&gt;</description><author>SteveR</author><pubDate>Wed, 20 Aug 2008 11:19:34 GMT</pubDate><guid isPermaLink="false">New Post: DateTimePicker issues 20080820111934A</guid></item><item><title>Commented Issue: Support for nullable dates</title><link>http://www.codeplex.com/AvalonControlsLib/WorkItem/View.aspx?WorkItemId=2839</link><description>any chance&amp;#63;&lt;br /&gt;Comments: ** Comment from web user: marlongrech ** &lt;p&gt;mm... I will add it to the list &amp;#58;D&lt;/p&gt;</description><author>marlongrech</author><pubDate>Fri, 08 Aug 2008 13:22:09 GMT</pubDate><guid isPermaLink="false">Commented Issue: Support for nullable dates 20080808012209P</guid></item><item><title>New Post: Couple of questions ?</title><link>http://www.codeplex.com/AvalonControlsLib/Thread/View.aspx?ThreadId=33072</link><description>&lt;div style="line-height: normal;"&gt;DataBinding does work in the datepicker.... Does your class implement INotifyPropertyChanged?&lt;br&gt;
&lt;/div&gt;</description><author>marlongrech</author><pubDate>Fri, 08 Aug 2008 13:20:47 GMT</pubDate><guid isPermaLink="false">New Post: Couple of questions ? 20080808012047P</guid></item><item><title>Created Issue: Support for nullable dates</title><link>http://www.codeplex.com/AvalonControlsLib/WorkItem/View.aspx?WorkItemId=2839</link><description>any chance&amp;#63;&lt;br /&gt;</description><author>SimonCropp</author><pubDate>Thu, 07 Aug 2008 12:15:43 GMT</pubDate><guid isPermaLink="false">Created Issue: Support for nullable dates 20080807121543P</guid></item><item><title>New Post: Couple of questions ?</title><link>http://www.codeplex.com/AvalonControlsLib/Thread/View.aspx?ThreadId=33072</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br&gt;
&lt;br&gt;
&amp;nbsp;Thank you for the great set of controls, I only use the datepicker control at the moment and I have some trouble with it:&lt;br&gt;
&amp;nbsp;&lt;br&gt;
&amp;nbsp;- How can I make it auto close after a date has been selected&lt;br&gt;
&amp;nbsp;- Why doesn't data binding work ? I use endDate.SetBinding(DatePicker.CurrentlySelectedDateProperty, new Binding(&amp;quot;EndDate&amp;quot;) { Source = this.DataContext }), EndData does not get updated ?&lt;br&gt;
&lt;br&gt;
Thank you,&lt;br&gt;
Calin,&lt;br&gt;
&lt;/div&gt;</description><author>Calin</author><pubDate>Thu, 07 Aug 2008 09:35:05 GMT</pubDate><guid isPermaLink="false">New Post: Couple of questions ? 20080807093505A</guid></item><item><title>Commented Issue: DatePicker throws an Exception when selecting November</title><link>http://www.codeplex.com/AvalonControlsLib/WorkItem/View.aspx?WorkItemId=2765</link><description>Resolution &amp;#58; change Novemeber to November in public static readonly string&amp;#91;&amp;#93; Months &amp;#61; new string&amp;#91;&amp;#93; in DateHelper.cs&lt;br /&gt;Comments: ** Comment from web user: marlongrech ** &lt;p&gt;Thanks I will update this &amp;#58;&amp;#41;&lt;br /&gt;oops... this was really a silly mistake from my side ...LOL&lt;/p&gt;</description><author>marlongrech</author><pubDate>Thu, 24 Jul 2008 20:36:36 GMT</pubDate><guid isPermaLink="false">Commented Issue: DatePicker throws an Exception when selecting November 20080724083636P</guid></item><item><title>Created Issue: DatePicker throws an Exception when selecting November</title><link>http://www.codeplex.com/AvalonControlsLib/WorkItem/View.aspx?WorkItemId=2765</link><description>Resolution &amp;#58; change Novemeber to November in public static readonly string&amp;#91;&amp;#93; Months &amp;#61; new string&amp;#91;&amp;#93; in DateHelper.cs&lt;br /&gt;</description><author>Saman_Saeedi</author><pubDate>Tue, 22 Jul 2008 15:32:21 GMT</pubDate><guid isPermaLink="false">Created Issue: DatePicker throws an Exception when selecting November 20080722033221P</guid></item><item><title>Commented Issue: First Day Of Week</title><link>http://www.codeplex.com/AvalonControlsLib/WorkItem/View.aspx?WorkItemId=2437</link><description>Hello, would it be possible to change the 1st day of the week&amp;#63; the convention is not Sunday in every countries...&lt;br /&gt;Comments: ** Comment from web user: serbrech ** &lt;p&gt;Ups, the enter key committed my Item instead of going to the next line.&lt;br /&gt;I looked for a way to change the pattern followed by the date which is displayed when the combobox is collapsed. The Culture that my other controls uses seems to be ignored by the datetimepicker. Why use the Tag property instead of doing a specific one&amp;#63;&lt;br /&gt;Those 2 features could actually be gathered in a &amp;#34;culture&amp;#34; property I think.&lt;/p&gt;&lt;p&gt;Thank you for this great control. It&amp;#39;s very easy to modify the style, and very easy to understand the code.&lt;br /&gt;Best Regards,&lt;/p&gt;&lt;p&gt;St&amp;#233;phane&lt;/p&gt;</description><author>serbrech</author><pubDate>Tue, 17 Jun 2008 13:51:30 GMT</pubDate><guid isPermaLink="false">Commented Issue: First Day Of Week 20080617015130P</guid></item><item><title>Created Issue: First Day Of Week</title><link>http://www.codeplex.com/AvalonControlsLib/WorkItem/View.aspx?WorkItemId=2437</link><description>Hello, would it be possible to change the 1st day of the week&amp;#63; the convention is not Sunday in every countries...&lt;br /&gt;</description><author>serbrech</author><pubDate>Tue, 17 Jun 2008 13:41:10 GMT</pubDate><guid isPermaLink="false">Created Issue: First Day Of Week 20080617014110P</guid></item><item><title>CREATED ISSUE: DatePicker Calendar doesn't close</title><link>http://www.codeplex.com/AvalonControlsLib/WorkItem/View.aspx?WorkItemId=2327</link><description>Even though the default style has StaysOpen&amp;#61;&amp;#34;false&amp;#34; for the Popup control, the calendar doesn&amp;#39;t close when you click somewhere else in the application. The only way to close it is to click on the drop down button.&lt;br /&gt;</description><author>commongenius</author><pubDate>Fri, 06 Jun 2008 21:43:52 GMT</pubDate><guid isPermaLink="false">CREATED ISSUE: DatePicker Calendar doesn't close 20080606094352P</guid></item><item><title>COMMENTED ISSUE: Localize months in DatePicker month combobox</title><link>http://www.codeplex.com/AvalonControlsLib/WorkItem/View.aspx?WorkItemId=2237</link><description>The month combo box in the DatePicker control has hard coded months in English.&lt;br /&gt;Comments: ** Comment from web user: marlongrech ** &lt;p&gt;that&amp;#39;s very true.... there are some people that refactored this control to be multi language... I&amp;#39;ll see if they want to contribute their code&lt;/p&gt;</description><author>marlongrech</author><pubDate>Sun, 25 May 2008 12:59:24 GMT</pubDate><guid isPermaLink="false">COMMENTED ISSUE: Localize months in DatePicker month combobox 20080525125924P</guid></item><item><title>CREATED ISSUE: Localize months in DatePicker month combobox</title><link>http://www.codeplex.com/AvalonControlsLib/WorkItem/View.aspx?WorkItemId=2237</link><description>The month combo box in the DatePicker control has hard coded months in English.&lt;br /&gt;</description><author>mmatriccino</author><pubDate>Sat, 24 May 2008 20:21:29 GMT</pubDate><guid isPermaLink="false">CREATED ISSUE: Localize months in DatePicker month combobox 20080524082129P</guid></item><item><title>NEW POST: joining in...</title><link>http://www.codeplex.com/AvalonControlsLib/Thread/View.aspx?ThreadId=28115</link><description>&lt;div style="line-height: normal;"&gt;So where does one signup to contribute?&lt;br&gt;
&lt;br&gt;
ive been with .net since......... dont even remembe.r,  .net alpha, ?&lt;br&gt;
&lt;br&gt;
im building a statewide application.,  at this moment im building it in winforms, simply because i know it inside and outside, and i just want the product v1 completed., somewhere along v2 or v3 i want to make it completely wpf.. and at that time i will convert my web services into a wcf... anyway., long story short...  .net charting controls, templating, all the wpf controls, user controls., so much stuff you can do... and a lot of the stuff is already done that you can simple ref and use it., but.... that stuff is EXPENSIVE!!, i just saw some .net wpf controls costing $1200.00 COMMON!!! &lt;br&gt;
&lt;br&gt;
so... i want to join, i probably wont have a lot of time to give input in the begining, a lot of questions as ill want to learn., but after i get the hang of it., i plan on creating a bunch of controls., skinable controls., so that it looks pretty., im not just a developer... i came from a design background., and now i.... am a cto.. .so., im not really a developer anymore., but design + develop is what i like, i like hands on stuff., anyway., i wanted to know how i can join this project., i will probably search for others., as i want to create more than just the library, id like to create some direct references for winforms developers to start using wpf directly., &lt;br&gt;
&lt;br&gt;
anyway.
&lt;/div&gt;</description><author>zxed</author><pubDate>Tue, 20 May 2008 23:30:12 GMT</pubDate><guid isPermaLink="false">NEW POST: joining in... 20080520113012P</guid></item><item><title>NEW POST: Hiding DatePicker Calender</title><link>http://www.codeplex.com/AvalonControlsLib/Thread/View.aspx?ThreadId=27569</link><description>&lt;div style="line-height: normal;"&gt;I'm just starting to play with the controls - using a DatePicker on a form.&amp;nbsp; I want the calender to hide itself after the user selects a date, but i'm not finding a way to make that happen.&amp;nbsp; I've played with a few difference Focus calls to take focus away form the control, but the calender doesn't collapse back into the textbox.&amp;nbsp; What would be the best method to making this happen?&lt;br&gt;
&lt;br&gt;
Thanks,&lt;br&gt;
Mike&lt;br&gt;
&lt;/div&gt;</description><author>neelm</author><pubDate>Mon, 12 May 2008 17:05:31 GMT</pubDate><guid isPermaLink="false">NEW POST: Hiding DatePicker Calender 20080512050531P</guid></item><item><title>CLOSED ISSUE: Position Property for DataGridView Column</title><link>http://www.codeplex.com/AvalonControlsLib/WorkItem/View.aspx?WorkItemId=1912</link><description>The position property is not working correctly&lt;br /&gt;Comments: fixed issue. 20thApril 2008</description><author>marlongrech</author><pubDate>Sun, 20 Apr 2008 15:47:06 GMT</pubDate><guid isPermaLink="false">CLOSED ISSUE: Position Property for DataGridView Column 20080420034706P</guid></item><item><title>COMMENTED ISSUE: Position Property for DataGridView Column</title><link>http://www.codeplex.com/AvalonControlsLib/WorkItem/View.aspx?WorkItemId=1912</link><description>The position property is not working correctly&lt;br /&gt;Comments: ** Comment from web user: marlongrech ** &lt;p&gt;This has been fixed and will be available in the v3. You may also download the fix from Change Set 9622 &amp;#40;20th Aptil 2008&amp;#41;.&lt;/p&gt;</description><author>marlongrech</author><pubDate>Sun, 20 Apr 2008 15:46:48 GMT</pubDate><guid isPermaLink="false">COMMENTED ISSUE: Position Property for DataGridView Column 20080420034648P</guid></item><item><title>CREATED ISSUE: Position Property for DataGridView Column</title><link>http://www.codeplex.com/AvalonControlsLib/WorkItem/View.aspx?WorkItemId=1912</link><description>The position property is not working correctly&lt;br /&gt;</description><author>marlongrech</author><pubDate>Sun, 20 Apr 2008 15:44:53 GMT</pubDate><guid isPermaLink="false">CREATED ISSUE: Position Property for DataGridView Column 20080420034453P</guid></item><item><title>Source code checked in</title><link>http://www.codeplex.com/AvalonControlsLib/SourceControl/ListDownloadableCommits.aspx</link><description>Added support for Custom CollectionNotificationStrategy and fixed bug with Position property of the DataGridViewPropertyDescriptorAttribute.&amp;#13;&amp;#10;Also changed the ICollectionNotificationStrategy to support IEnumareable instead of IList</description><author>marlongrech</author><pubDate>Sun, 20 Apr 2008 15:42:04 GMT</pubDate><guid isPermaLink="false">Source code checked in 20080420034204P</guid></item><item><title>Source code checked in</title><link>http://www.codeplex.com/AvalonControlsLib/SourceControl/ListDownloadableCommits.aspx</link><description>Removed and sorted Usings</description><author>marlongrech</author><pubDate>Sun, 20 Apr 2008 08:59:04 GMT</pubDate><guid isPermaLink="false">Source code checked in 20080420085904A</guid></item></channel></rss>