goldrich

Stories kicked by goldrich

Creating a Custom Observable Collection in WPF | UX and WPF ramblings(sweux.com)

submitted by psampaiopsampaio(115) 3 years ago

One of the biggest advantadges WPF has is its Data Binding features. Data Binding can be done in several ways, but the most common is using the INotifyPropertyChanged and INotifyCollectionChanged interfaces. For simple objects, all you need to do is implement the INotifyPropertyChanged, and raise the PropertyChanged event when your properties change. When you want to bind to a collection, you will want to use ObservableCollection<T>. This collection implements both interfaces, therefore notifying you when the items in the collection change and when the items' properties change. This works great if you're using standard collections. The problem arises when you want to use a custom collection. For databinding to work with custom collections, you will have to create a new "Observable" wrapper around it. read more...

add a comment |category: |Views: 343

tags: another

How Rapid is Rapid? How Quick is Quick?(rocksolid.gibraltarsoftware.com)

submitted by jcincottajcincotta(341) 3 years ago

An unusual take on the importance of raw performance in logging systems. Sometimes less is more. Rather, in logging, as in most software design challenges, keeping the big picture in mind is the most important thing. Concepts extend to other design topics. read more...

1 comment |category: |Views: 226

tags: another

The ASP.NET MVC Information Portal(aspdotnetmvc.com)

submitted by simonechsimonech(10.1k) 3 years, 11 months ago

A content aggregator of everything related to ASP.NET MVC read more...

add a comment |category: |Views: 437

tags: another