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 7996067
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T14:36:33+00:00 2026-06-04T14:36:33+00:00

I have a model public class PersonModel : INotifyPropertyChanged { private string _firstname; public

  • 0

I have a model

    public class PersonModel : INotifyPropertyChanged
    { 
        private string _firstname;
        public string FirstName 
        { 
            get {return _firstname; }
            set { _firstname = value; RaisePropertyChanged("FirstName"); } 
        }

        private string _lastname;
        public string LastName
        {
            get { return _lastname; }
            set { _lastname = value; RaisePropertyChanged("LastName"); }
        } 

        public string FullName 
        {
            get { return string.Format("{0} {1}", FirstName, LastName); } 
        }


        protected void RaisePropertyChanged(string propertyName)
        {
            var handler = PropertyChanged;
            if (handler != null)
            {
                handler(this, new PropertyChangedEventArgs(propertyName));
            }
        }

        public event PropertyChangedEventHandler PropertyChanged;
    } 

I have a viewmodel:

 public class PersonViewModel
    {
        public ObservableCollection<PersonModel> Person { get; set; }
        public PersonViewModel()
        {
            Person = CookPersonData();
        }

        internal static ObservableCollection<PersonModel> CookPersonData()
        {
            ObservableCollection<PersonModel> persons = new ObservableCollection<PersonModel>();
            persons.Add(new PersonModel{ FirstName="Raj", LastName="kumar" });
            return persons;
        }
    }

The Usercontrol is

<UserControl x:Class="WpfApplication1.UserControl1"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             xmlns:local="clr-namespace:WpfApplication1"
             mc:Ignorable="d" 
             d:DesignHeight="300" d:DesignWidth="300">
    <UserControl.DataContext>
        <local:PersonViewModel></local:PersonViewModel>
    </UserControl.DataContext>
    <Grid>      
        <Grid.RowDefinitions>
            <RowDefinition></RowDefinition>
            <RowDefinition></RowDefinition>
        </Grid.RowDefinitions>        
        <TextBlock Grid.Row="0" Text="FirstName"></TextBlock>
        <TextBox Text="{Binding FirstName,Mode=TwoWay}" Name="txtFirstName" Margin="115,0,0,106" DataContext="{Binding Path=Person}" Background="#FFF0F0F0" />
        <TextBlock Grid.Row="1" Text="FirstName"></TextBlock>
        <TextBox Grid.Row="1" Text="{Binding LastName,Mode=TwoWay}" Name="txtLastName" Margin="115,0,0,110" DataContext="{Binding Path=Person}" Background="#FFF0F0F0" />
    </Grid>
</UserControl>

I need to rebind the datacontext which is not happening

can you suggest what is the problem?
  • 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-06-04T14:36:34+00:00Added an answer on June 4, 2026 at 2:36 pm

    Change that code on this one:

    public class PersonViewModel : INotifyPropertyChanged
       {
           public ObservableCollection<PersonModel> _person = new ObservableCollection<PersonModel>();
    
           public ObservableCollection<PersonModel> Person
           {
               get { return _person; }
               set { _person = value; RaisePropertyChanged("Person"); }
           }
    
    
           public PersonViewModel()
           {
               UpdateView = new DelegateCommand(this.OnUpdateView, this.CanUpdateView);
    
               var tmp = CookPersonData();
               Person.Clear();
    
               foreach (var item in tmp)
               {
                   Person.Add(item);
               }
           }
    
           internal static ObservableCollection<PersonModel> CookPersonData()
           {
               ObservableCollection<PersonModel> persons = new ObservableCollection<PersonModel>();
               persons.Add(new PersonModel { FirstName = "Raj", LastName = "kumar" });
               return persons;
           }
    
           internal static ObservableCollection<PersonModel> CookPersonData2()
           {
               ObservableCollection<PersonModel> persons = new ObservableCollection<PersonModel>();
               persons.Add(new PersonModel { FirstName = "Raj2", LastName = "kumar2" });
               return persons;
           }
    
           public ICommand UpdateView { get; private set; } 
           private void OnUpdateView()
           {
               var tmp = CookPersonData2();
               Person.Clear();
    
               foreach (var item in tmp)
               {
                   Person.Add(item);
               }
           }
           private bool CanUpdateView()
           {
               return true;
           }
    
           protected void RaisePropertyChanged(string propertyName)
           {
               var handler = PropertyChanged;
               if (handler != null)
               {
                   handler(this, new PropertyChangedEventArgs(propertyName));
               }
           }
    
           public event PropertyChangedEventHandler PropertyChanged;
       }
    

    And XAML file:

       <Window.DataContext>
            <local:PersonViewModel />
        </Window.DataContext>
        <StackPanel>
            <Grid>
            <Grid.RowDefinitions>
                <RowDefinition></RowDefinition>
                <RowDefinition></RowDefinition>
    
            </Grid.RowDefinitions>
            <TextBlock Grid.Row="0" Text="FirstName"></TextBlock>
            <TextBox Text="{Binding Person[0].FirstName,Mode=TwoWay}" Name="txtFirstName" Margin="115,0,0,106"  Background="#FFF0F0F0" />
            <TextBlock Grid.Row="1" Text="FirstName"></TextBlock>
            <TextBox Grid.Row="1" Text="{Binding Person[0].LastName,Mode=TwoWay}" Name="txtLastName" Margin="115,0,0,110" Background="#FFF0F0F0" />
    
    
        </Grid>
            <Button Content="Update" Command="{Binding UpdateView}" />
        </StackPanel>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have model public class MyModel { public string Name { get; set;} }
I have: 1) public class Model { public String Name { get; set; }
I have model: [Validator(typeof(RegisterValidator))] public class RegisterModel { public string Name { get; set;
I have this model: public class Package { public string CustomerName { get; set;
I have a model public class Person { public string Name { get; set;
I have a model public class Foo{ public int Id{get;set;} public string Name {get;
I have a simple Model: public class MyModel { public string Text{get;set;} } I
I have a model class public class Item { public string Name {get; set;}
i have a model : public class person { public int id{get;set;} public string
I have a view model public class PersonsViewmodel { public string FirstName { get;

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.