Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7575981
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T16:48:45+00:00 2026-05-30T16:48:45+00:00

I was just looking into the difference between BindingList and ObservableCollection following this question:

  • 0

I was just looking into the difference between BindingList and ObservableCollection following this question: Why NOT BindingList in WPF

As part of this, I tested binding the ItemsSource of an ItemsControl to various types, including List, Collection, ObservableCollection and BindingList.

What surprised me is that the interface updated when either the ObservableCollection or the BindingList were modified, but not when the others were. So what is WPF listening to that causes that update? It can’t be the INotifyCollectionChanged event, as I previously thought, because BindingList does not implement that. Bemused.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T16:48:46+00:00Added an answer on May 30, 2026 at 4:48 pm

    Binding list looks like this:

      public class BindingList<T> : Collection<T>, IBindingList, IList, ICollection, IEnumerable, ICancelAddNew, IRaiseItemChangedEvents
      {
    

    IRaiseItemChangedEvents indicates that the object class converts property change events to ListChanged events
    .
    BindingList itself has the ListChanged event which is what WPF must be listening to.

    If fact it looks like IRaiseItemChangedEvents is ignored, but there’s a BindingListCollectionView which contains

        // subscribe to change notifications
        private void SubscribeToChanges () 
        {
            if (InternalList.SupportsChangeNotification)
            {
                InternalList.ListChanged += new ListChangedEventHandler(OnListChanged); 
            }
        } 
    

    and a constructor like

        /// <summary> 
        /// Constructor
        /// </summary>
        /// <param name="list">Underlying IBindingList</param>
        public BindingListCollectionView(IBindingList list) 
            : base(list)
        { 
            InternalList = list; 
    

    I recommend you get hold of DotPeek and see for yourself.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How would you test this scenario? I've just started looking into NHibernate and having
I'm just looking for a simple, concise explanation of the difference between these two.
I just began looking into source control.... And installed subversion from collabnet... I also
I have just been looking into Linq with ASP.Net. It is very neat indeed.
Just some days ago I started looking into a unit test framework called check,
I am just looking at sorting an NSArray of NSNumbers into numeric order but
I was just going to use the FileUpload.FileBytes property but looking into the respective
Just looking for the relevant documentation. An example is not necessary, but would be
Just looking at: (Source: https://xkcd.com/327/ ) What does this SQL do: Robert'); DROP TABLE
So I'm just going to dive into this issue... I've got a heavily used

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.