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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T01:52:11+00:00 2026-05-28T01:52:11+00:00

I have a window with a textbox and a submit button. When pressing the

  • 0

I have a window with a textbox and a submit button. When pressing the submit button, the data in the textbox should populate into the listbox and be saved.

What’s the best way of doing this? I tried a recommendation (using ObservableCollection) from an earlier question I had, but I can’t seem to get it work. I have tried implementing it like this:

I created a class:

public class AccountCollection
{
    private string accountName;
    public string AccountName
    {
        get { return accountName; }
        set { accountName = value; }
    }
    public AccountCollection(string accountName)
    {
        AccountName = accountName;
    }
}        

Assigned the binding in my XAML:

<ListBox ItemsSource="{Binding AccountName, Mode=TwoWay}" IsSynchronizedWithCurrentItem="True" Height="164" HorizontalAlignment="Left" Margin="12" Name="accountListBox" VerticalAlignment="Top" Width="161" SelectionChanged="accountListBox_SelectionChanged" />

…and finally, when a user clicks the submit button from another window that contains the Submit button and textbox:

private void okBtn_Click(object sender, RoutedEventArgs e)
{
    BindingExpression expression = okBtn.GetBindingExpression(accountaddTextBox.Text);
    expression.UpdateSource();
}

But alas, I’m getting nowhere. I get an error message at the GetBindingExpression section:

Argument 1: cannot convert from ‘string’ to ‘System.Windows.DependencyProperty’

What’s obvious to me here is that when I created the class I didn’t specify anything about the account name from the textbox, so I don’t even know if the class is correct.

I’m basically confused and don’t know what to do. Any help would be appreciated…

  • 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-28T01:52:12+00:00Added an answer on May 28, 2026 at 1:52 am

    MODEL

    // the model is the basic design of an object containing properties
    // and methods of that object. This is an account object.
    
    public class Account : INotifyPropertyChanged
    {
        private string m_AccountName;
    
        public event PropertyChangedEventHandler PropertyChanged;
    
        public string AccountName
        {
           get { return m_AccountName;}
           set 
             { 
                m_AccountName = value;
                OnPropertyChanged("AccountName");
             }
        }
    
        protected void OnPropertyChanged(string name)
        {
          PropertyChangedEventHandler handler = PropertyChanged;
          if (handler != null)
          {
              handler(this, new PropertyChangedEventArgs(name));
          }
        }
    }
    

    ListBox XAML

     <ListBox Name="MyAccounts" DisplayMemberPath="AccountName" />
    

    CODE BEHIND

    // create a collection of accounts, then whenever the button is clicked,
    //create a new account object and add to the collection.
    
    public partial class Window1 : Window
    {
        private ObservableCollection<Account> AccountList = new ObservableCollection<Account>();
    
        public Window1()
        {
            InitializeComponent();
            AccountList.Add(new Account{ AccountName = "My Account" });
            this.MyAccounts.ItemsSource = AccountList;
        }
         private void okBtn_Click(object sender, RoutedEventArgs e)
        {
           AccountList.Add(new Account{ AccountName = accountaddTextBox.Text});
        }
    }
    

    edit: added displaymemberpath on listbox xaml

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

Sidebar

Related Questions

I have a form (AddNewCamper), which contains a textbox and a submit button. In
I have a UserControl which contains a TextBox . When my main window loads
In WPF I have one window opening a second window that allows some data
Question: I have one popup window it contains some values in textbox and textarea.
I have a WPF window with a textbox, using standard WPF Databinding to an
I have a WPF Window that contains a TextBox. I have implemented a Command
I have a window containing a textBox. On both the window AND the textBox,
I have a TextBox and a ListView in my window, and I'd like to
I have a textbox and a button on my Access form. In the click
I have a simple window and textbox, when i try to paste this code

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.