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 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

Ask A Question

Stats

  • Questions 81k
  • Answers 81k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Simple problem actually. Change: if (strTemp != '') to if… May 11, 2026 at 4:31 pm
  • Editorial Team
    Editorial Team added an answer In your Model - convert the Byte to a Bool… May 11, 2026 at 4:31 pm
  • Editorial Team
    Editorial Team added an answer Found the solution. Might help someone. To save the current… May 11, 2026 at 4:31 pm

Related Questions

A part of the editor i'm writing uses a Wpf-TreeView. I'm using DataBinding and
Introduction I've always been searching for a way to make Visual Studio draw a
I am building a physics simulation engine and editor in Windows. I want to
I have a huge text file (~1GB) and sadly the text editor I use
I'm using this lightweight jQuery plugin to create a rich-text editor: Batiste RTE jQuery

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.