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

  • SEARCH
  • Home
  • 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 168697
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T12:29:56+00:00 2026-05-11T12:29:56+00:00

A part of the editor i’m writing uses a Wpf-TreeView. I’m using DataBinding and

  • 0

A part of the editor i’m writing uses a Wpf-TreeView. I’m using DataBinding and an ItemTemplate to populate the TreeView. So far i’m manipulating the ItemsSource(mostly ObeservableCollection’s) dircetly(using for example Drag&Drop). But now i read this and i’m not sure if it would realy simplify thinks for me. And before i go on with the project i whould like to know all Pros and Cons.

If Data(ItemsSource) is added, edited or delete, how to keep the Data and the ViewModel consistent? Is that something the ViewModel has to take care of? If i have to take care of the consistens how does this simplifies thinks?

  • 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. 2026-05-11T12:29:57+00:00Added an answer on May 11, 2026 at 12:29 pm

    MVVM is a great fit for WPF development in general, not just in TreeViews.

    If Data(ItemsSource) is added, edited or delete, how to keep the Data and the ViewModel consistent?

    Not sure exactly what you’re asking here, but WPF binding handles collection changes, as long as those collection implement INotifyCollectionChanged. ObservableCollection<T> gives you a nice, useful implementation of this interface that you can use within your view models.

    Bindings keep the view consistent with your view model. Generally what you’re aiming for is zero code-behind in your view. Your view just binds to properties on the view model and it is the responsibility of the view model to keep related properties in sync. Here’s a really simple example:

    public class PersonViewModel : INotifyPropertyChanged {     public string FirstName     {         get { return _firstName; }         set         {             if (_firstName != value)             {                 _firstName = value;                 OnPropertyChanged('FirstName');                 OnPropertyChanged('FullName');             }         }     }      //LastName and other members omitted      public string FullName     {         get { return FirstName + ' ' + LastName; }     } } 

    Here the FullName property is affected by changes to FirstName and LastName. The view can just bind to FullName and any changes to the other two properties will be visible in the UI.

    I’d advise you to read my blog post on POCOs versus DependencyObjects as view models before you start out.

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

Sidebar

Related Questions

As part of an editor project, I need to add functionality to the WPF
I've created a link in Sharepoint using the Content Editor Web Part. My link
I'm using Javascript inside of a SharePoint 2010 Content Editor Web Part to insert
The wysiwyg editor I'm using uses this to replace the <strong> with a span
I have a Content Editor Web Part where I am using scrolling Javascript to
Does your editor/ide highlight that a++; in this C/C++ code as part of a
Part of the GUI I'm building using tkinter has a pop-up window that says
Hi My code in content editor web part is something like below But I
How do I get the drop down to display as part of my editor
A major part of our work is creating and manipulating certain XML files, for

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.