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

The Archive Base Latest Questions

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

I am trying to implement some very simple Data Binding in my User Control

  • 0

I am trying to implement some very simple Data Binding in my User Control that runs in a WinForm app. The User Control is extended like so –>

    public partial class ucDiagnosis : XtraUserControl, INotifyPropertyChanged

Then on that User Control I have this Property –>

    private string m_Pets;
    public string Pets
    {
        get
        {
            return m_Pets;
        }
        set
        {
            if (value != this.m_Pets)
            {
                this.m_Pets = value;
                NotifyPropertyChanged("Pets");
            }
        }
    }

Then in the Constructor I have this –>

    tbxListPets.DataBindings.Add("Text",this, Pets);

Next I have this in my Events region –>

    public event PropertyChangedEventHandler PropertyChanged;

Next I have this Method –>

    private void NotifyPropertyChanged(String info)
    {
        if (PropertyChanged != null)
        {
            PropertyChanged(this, new PropertyChangedEventArgs(info));
        }
    }

Finally, in my method to Load Data into the Control I have this –>

    var additionalDiagnosis = BLLMcp.GetPlanDiagnosisAddtional(planID);
    Pets = additionalDiagnosis.Rows[0]["Pets"].ToString();

The program runs but the text box stays empty. No matter what I type in it, it just clears out instantly. Also, I put a breakpoint on the Setter which gets called on the initial load and has the correct data assigned to value but it does not update the text box. Furthermore, the Setter never gets called again no matter what I type in the box.


Further Attempt by me

So I seem to have gotten it working but I am perplexed as to how, if it even truly is. I simply added this line with the other two in my LoadData() method –>

            tbxListPets.Text = addtionalDiagnosis.Pets;

Why would I have to set the TextBox explicitly after setting the Property? Isn’t that what Data Binding does for me or have I somehow managed to screw up and only implement one-way binding?

  • 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-13T16:45:28+00:00Added an answer on May 13, 2026 at 4:45 pm
    tbxListPets.DataBindings.Add("Text",this, Pets);
    //                                        ^^^^
    

    shouldn’t it rather be:

    tbxListPets.DataBindings.Add("Text", this, "Pets");
    //                                         ^^^^^^
    

    Note the missing double-quotation marks in your original code.

    You need to specify the name of the property (which is to be bound to the UI control) as a string. WinForms will then be able to retrieve that property’s value either through reflection, or through the TypeDescriptor mechanism.

    If you omit the quotation marks, then an attempt will be made to bind the UI control to a property whose name equals the current value of Pets (which is almost definitely not what you intended).

    See also: ControlBindingsCollection.Add reference page on MSDN

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

Sidebar

Ask A Question

Stats

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

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

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

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

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The following is valid code using the latest release --… May 13, 2026 at 10:24 pm
  • Editorial Team
    Editorial Team added an answer Great question, I've wanted to do this myself for a… May 13, 2026 at 10:24 pm
  • Editorial Team
    Editorial Team added an answer You are not using MAX() right. Here is pretty fast… May 13, 2026 at 10:24 pm

Related Questions

I'm using a remote 3rd party storage solution that does not have support for
I am having a really hard time attempting to debug LINQ to SQL and
I know a solution would be to use VS 2005 or 2008, but that's
I have a class called Profile that has some simple properties and then it
I have a daemon that reads a configuration file in order to know where

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.