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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T17:21:54+00:00 2026-05-13T17:21:54+00:00

I have a WPF Window with several TextBoxes on it. I have an XSD

  • 0

I have a WPF Window with several TextBoxes on it.

I have an XSD dataset attached to a SQL server database, and the window is bound to a row from the tableadapter:

  public partial class PersonForm : Window
  {
    public PersonForm(int id)
    {
      InitializeComponent();

      MyDatasetTableAdapters.personTableAdapter tableAdapter = 
        new MyDatasetTableAdapters.personTableAdapter();

      personRow row = tableAdapter.GetPersonById(id);

      this.DataContext = row;
    }

    ...

  }

The textboxes are bound like this:

<TextBox Name="lastName" Text="{Binding Path=lastname}" />

These binding bindings work and the text boxes are populated with the data from the SQL database properly, but when the text box is edited, the changes are not propogated back to the database.

I have a button that when clicked calls

myTableAdapter.Update(myRow);

This does successfully update the SQL database.

My question is: What changes do I need to make so that the text boxes will automatically update the database automatically (without having to explicitly call TableAdapter.Update).

Also, is this the proper way to bind a form to a database in WPF?

  • 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-13T17:21:55+00:00Added an answer on May 13, 2026 at 5:21 pm

    I’ve discovered one way to accomplish this.

    By setting the NotifyOnSourceUpdated property to True on the textbox binding like this:

    <TextBox Name="lastName" Text="{Binding Path=lastname, NotifyOnSourceUpdated=True}" />
    

    I am then able to update the table adapter in the Window’s SourceUpdated event like this:

    private void Window_SourceUpdated(object sender, DataTransferEventArgs e)
    {
      myTableAdapter.Update(myRow);
    }
    

    This seems to work well. Is there a better way to accomplish this?

    Is there a way to enable the NotifyOnSourceUpdated on all text boxes easily without having to specify it on every TextBox?

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

Sidebar

Related Questions

I have a WPF window for editing database information, which is represented using an
I have a WPF Window which has a among other controls hosts a Frame.
Is it possible to have a WPF window/element detect the drag'n'dropping of a file
This one has me beat; I have a WPF window with two (important for
I have a button with a transparent background on a wpf window. Problem is,
Is it possible to find out whether WPF Window is loaded? I have a
I have a FlowDocument in a standard WPF application window where I have some
I have a window in WPF which shows some media contents. This content contains
I have a borderless and transparent window in WPF, with some fancy decoration at
WPF doesn't provide the ability to have a window that allows resize but doesn't

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.