Blogroll
Find
Categories
- .Net (15)
- ASP.Net (1)
- Australia (12)
- Azure (1)
- Blog (1)
- BSOD (1)
- C# (8)
- cloud (1)
- CodeMash (2)
- Conferences (1)
- F# (1)
- Game Review (4)
- Games (1)
- Kinect (1)
- Layout Controls (17)
- Linq (3)
- Networking (2)
- PDC (1)
- process (1)
- Scala (5)
- SharePoint (5)
- Silverlight (1)
- srt (5)
- Study Group (3)
- Uncategorized (4)
- Unity (7)
- WCF (1)
- Web programming (1)
- Windows 7 (2)
- WinForms (2)
- WPF (9)
- XNA (2)
Archive
- November 2013 (3)
- October 2013 (2)
- September 2013 (15)
- August 2013 (2)
- January 2013 (2)
- December 2012 (1)
- November 2012 (2)
- October 2012 (1)
- September 2012 (9)
- January 2012 (1)
- July 2011 (5)
- June 2011 (1)
- April 2011 (2)
- March 2011 (3)
- February 2011 (3)
- May 2010 (4)
- December 2009 (1)
- November 2009 (2)
- July 2009 (2)
- June 2009 (1)
- May 2009 (2)
- April 2009 (2)
- March 2009 (1)
- February 2009 (1)
- January 2009 (2)
- December 2008 (1)
- November 2008 (2)
- October 2008 (3)
Category Archives: WPF
Silverlight follow-up: WPF memory leak
In my last post, I wrote about a memory leak that is easy to come by in WPF. I converted the WPF test application I was using to Silverlight to see whether or not Silverlight suffers from the same memory … Continue reading
Posted in Silverlight, WPF
Comments Off on Silverlight follow-up: WPF memory leak
WPF Gotcha: Easy Memory Leak
I strongly suggest that you implement INotifyPropertyChanged on any class that will be a binding source. I’ve been doing some memory profiling recently and ran into a HashTable outside of my code that was holding on to a reference to … Continue reading
Posted in WPF
Comments Off on WPF Gotcha: Easy Memory Leak
Bindable DataGrid Columns
Currently the WPF DataGrid supports two ways in which to generate columns: AutoGenerate and XAML declaration. AutoGenerating columns will produce a column for every property in the ItemsSource class, but the behavior can be altered by using the AutoGeneratingColumn event … Continue reading
Posted in C#, WPF
6 Comments
Ribbon Tab Definition on UserControl
We’ve been using the Ribbon control provided by Microsoft on a project I’ve been working on. We started with the WPF toolkit Ribbon but recently upgraded to the .Net 4.0 version. The 4.0 version is much better than the WPF … Continue reading
Posted in srt, WPF
9 Comments
WPF – Combo Box SelectedItem Binding
I recently was debugging a strange issue we were seeing with our combo boxes. When the data context changed, the combo box would lose the selected item and appear blank but the list of possible selections would be correct. I … Continue reading
WPF LL: TextBoxes that just keep growing
This problem was probably discovered accidentally and shows me once again how important it is to have non-technical and new people testing your programs. The problem encountered was that the TextBoxes on one of our Windows would just keep expanding … Continue reading
Posted in srt, WPF
4 Comments
WPF LL: XML Binding and Data Converters
In the project I’ve been working on, we’re binding a bunch of controls to an XML document. In our bindings, we are extensively using XPath. One of the things that did not occur to me immediately, and seems very obvious … Continue reading
WPF Lessons Learned – Use ContextMenu.Items over ContextMenu.ItemsSource
I’ve been working on a WPF project for a client and have learned a lot in the process. I’d like to touch on some of these things. This first post will be about creating a ContextMenu. I’ve had to create … Continue reading
Study Group – WPF
For the last two weeks Anne Marsan has led study group. Both of her sessions were about WPF and she led them by writing up instructions on how to produce a project that illustrated what she wanted to teach. Her … Continue reading
Posted in .Net, Study Group, WPF
Comments Off on Study Group – WPF
