Welcome to MSDN Blogs Sign in | Join | Help

Vincent Sibal's Blog

WPF Programming Topics

Browse by Tags

All Tags » WPF 3.5 SP1   (RSS)
WPF 3.5 SP1 sources are now available!
The Reference Source Code Center team has just announced that the WPF 3.5 SP1 sources are now publicly available. You can read about it here, http://blogs.msdn.com/rscc/archive/2008/10/22/wpf-sources-for-net-framework-3-5-sp1-are-available.aspx . The Read More...
WPF 3.5 SP1 Feature: BindingGroups with Item-level Validation
Motivation Before 3.5 SP1, the binding validation system worked with only one binding at a time. What made this difficult in some scenarios was when validation was required on a set of bound objects. Some typical examples that come to mind are a form Read More...
.NET 3.5 SP1 and WPF DataGrid CTP are out now!
UPDATE: the WPF DataGrid v1 has just released. For more information, see this post . The information below still applies, but the new post contains the additional features as well as an updated sample. Check it out! As you might have heard, .NET Framework Read More...
WPF 3.5 SP1 Feature: Alternating Rows
So what else is new in WPF 3.5 SP1? Here is a smaller but pretty nice feature for you ItemsControl fans: alternating rows. This alternating row feature has been added in WPF 3.5 SP1 to make it easier to set properties like Background, Foreground, etc. Read More...
Using IEditableCollectionView with dynamically generated GridViewColumns
I recently got a question on how to implement IEditableCollectionView with GridViewColumns that are dynamically created. Creating the columns dynamically actually doesn’t really have a big impact on IEditableCollectionView implementation. I have a sample Read More...
WPF 3.5 SP1 Feature: Non-live Scrolling
So far for the new WPF 3.5 SP1 features, I've surveyed Item Container Recycling , Data Formatting , and IEditableCollectionView . Next on my list is Non-live Scrolling! What is it? Before 3.5 SP1, the WPF ScrollViewer only supported live scrolling, which Read More...
WPF 3.5 SP1 feature: IEditableCollectionView
Motivation A CollectionView is your interface into manipulating a collection of data items in an ItemsControl. Common tasks with this view often involve applying sorting, filtering, and grouping. In lieu of supporting a DataGrid control, transactional Read More...
New WPF 3.5 SP1 feature: Data Formatting (with Binding.StringFormat)
Background Formatting data can be a pretty cumbersome task in WPF. To illustrate with a very simple example, let’s say I want to display the dollar value of some item in a TextBlock: < StackPanel > < TextBlock Text ="Choose a number:"></ Read More...
More WPF 3.5 SP1 resources
Here are some pretty comprehensive resources on the new features in our WPF 3.5 SP1 release. Scott Guthrie's blog post on installation issues, features in Visual Studio and the .NET framework. Jossef Goldberg's blog post on performance improvements in Read More...
Recycling that Item Container
Item container recycling is a one of the many new features in SP1. I'm going to talk a little bit about it here. What is it? As a little background, the VirtualizingStackPanel ’s virtualization scheme basically works like this: generate containers when Read More...
Page view tracker