Extended WPF Toolkit Release 1.5.0
You may have been wondering why I have been so quite lately here on ElegantCode. Well the reason is because I have been hard at work getting the next version of the Extended WPF Toolkit released. Now is the time. The Extended WPF Toolkit version 1.5.0 is now officially released. You can download it form the project site or from NuGet. This version have a few bug fixes, some updates controls, and six new controls. Let take a quick look at the newest controls in the Extended WPF Toolkit family.
CheckListBox
The CheckListBox control is a ListBox in which each item is represented with a CheckBox. The CheckBox.IsSelected can be data bound using the CheckedMemberPath property. The CheckListBox also provides a Command property which will execute everytime an item is checked/unchecked. The CommandParameter is the recently checked/unchecked item.
CollectionEditor
The CollectionEditor is exactly what it sounds like. It is a control that is used to edit collections the implement the IList interface.
CollectionEditorDialog
The CollectionEditorDialog is basically the CollectionEditor stuffed inside a Window. You could have probably done this yourself, but I figured I would save you the trouble.
DropDownButton
The DropDownButton control is a button that when clicked displays a drop down in which you can place any custom content within.
MultiLineTextEditor
The MultiLineTextEditor is a ComboBox that, when opened, provides a drop down text editor. This is useful for those scenarios when you want to provide you user with a way to edit a large amount of text, but without the need for a TextBox that is a mile long or mile high.
PrimitiveTypeCollectionEditor
The PrimitiveTypeCollectionEditor is a collection editor that is meant for use with a IList of primitive types such as String, Int, Double, etc. Items are represented by a new line. The following example is bound to a List<String>.
Wizard
This is another control that is self explanatory. You simply create various WizardPages to represent you flow. Each Wizard page has a PageType which specifies if it is a blank page, interior page, or an external page. The PreviousPage and NextPage properties are for navigation. If you do not specify a PreviousPage or NextPage, the Wizard will use indexing for navigating between pages.
Sample Application
There is also a new sample application that will show basic usage of each control. Over time I will add new and more advance samples. You can always request a sample to be added.
You will be able to see the XAML:
As well as any C# code:
I know the documentation on these controls are lacking but these controls will be documented in more detail in the coming weeks or as soon as I can get to it.
As you can see I have been hard at work trying to make the Extended WPF Toolkit the most functional, feature rich, and FREE open source WPF toolkit available. Please be sure to submit bugs or request new features in the Issue Tracker, and ask any questions or to get support in the Discussions. I would like to thank the community for all the feedback and support you have given this project.
Categories
- .NET 3.5
- Boise Code Camp
- BSDG
- CSLA
- Entity Framework
- Extended WPF Toolkit
- NETDUG
- Pluralsight
- Prism
- Silverlight
- Uncategorized
- Visual Studio
- WPF
- XAML
Popular Posts
- Silverlight DataGrid - Populate Dynamic Columns from a Child Collection
- Silverlight 4 – Accessing System Devices with Com Interop, such as a Scanner.
- WPF Multithreading: Using the BackgroundWorker and Reporting the Progress to the UI.
- Extended WPF Toolkit–using the BusyIndicator
- A Simple WPF Loading Animation
- The Entity Framework and the “The invoked member is not supported in a dynamic assembly” exception.
- WPF - dynamically compile and run event handlers within loose XAML using CodeDom
- Mapping an Address with the Bing Maps WPF Control (Beta)
- Extended WPF Toolkit – New MessageBox Control
- Text-To-Speech in Silverlight Using WCF
Archives
- February 2012
- November 2011
- October 2011
- September 2011
- August 2011
- April 2011
- March 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009

December 14th, 2011 - 03:15
Brian, I using the Extended WPF Toolkit and it’s great, what do you reckon is the best approach for having a file browse in the PropertyGrid for a property?
December 14th, 2011 - 07:31
You must create a custom editor. Just follow the Custom Editor example in the sample application.