Posted in Open Source, WPF TreeView on Apr 7th, 2008
I’ve posted an update for my WPF TreeView which contains a bugfix and two new features:
The root item collection is now monitored for changes, and the tree updates itself automatically. This behaviour, however, can be controlled through the ObserveRootItems dependency property.
Built-in filtering support through a strongly typed predicate. I’m not completely […]
Read Full Post »
Posted in WPF Controls on Mar 14th, 2008
This is a pretty simple user control, which allows you to display a file dialog to open or save files. Its look can be easily adjusted, and it provides built-in truncation of the file string to a predefined length if necessary. Here’s the XAML for the above sample control:
<files:FileSelector x:Name=”openFileSelector”
[…]
Read Full Post »
Posted in Open Source, WPF TreeView on Jan 24th, 2008
A tutorial is now available on Code Project, so check the article for a detailed overview. And please leave your rating if you like the control http://www.codeproject.com/KB/WPF/versatile_treeview.aspx
Update: The latest version is currently only available through the download link below. I’ll update the CodeProject article once the current filtering mechanism has been rewritten:
Download: wpf-treeview.zip […]
Read Full Post »
Posted in WPF on Jan 21st, 2008
In all my Windows Forms applications, I usually start with a common base class for forms and controls that provides a bunch of convenience properties, subscribes to common events, handles proper cleanup etc. I also implement an empty virtual InitControl method which can be overridden by deriving controls to initialize themselves.
As you can see in […]
Read Full Post »