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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T15:09:49+00:00 2026-05-13T15:09:49+00:00

I currently have a windows form application composed of a textbox and two buttons

  • 0

I currently have a windows form application composed of a textbox and two buttons (previous and next) The textbox is bound to the name of a Person on a list. Previous and Next button changes the position of the BindingManager by 1 (either increment or decrement).

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        private List<Person> stringList;

        BindingManagerBase bindingManager;

        public Form1()
        {
            InitializeComponent();

            stringList = new List<Person>();
            stringList.Add(new Person{ name = "person1" });
            stringList.Add(new Person { name = "person2" });
            stringList.Add(new Person { name = "person3" });
            stringList.Add(new Person { name = "person4" });

            bindingManager = this.BindingContext[stringList];

            bindingManager.CurrentChanged += handleCurrentChanged;

            textBox1.DataBindings.Add(new Binding("Text", stringList, "name"));


        }

        private void textBox1_TextChanged(object sender, EventArgs e)
        {

        }

        private void handleCurrentChanged(object sender, EventArgs e)
        {
            MessageBox.Show("handleCurrentChanged");
        }

        private void button1_Click(object sender, EventArgs e)
        {
            bindingManager.Position++;
        }

        private void button2_Click(object sender, EventArgs e)
        {
            bindingManager.Position--;
        }
    }

    public class Person
    {
        public String name { get; set; }
    }
}

What is needed is to prompt the user whenever he/she presses the previous or next button whether to save his changes or not. But only if he made some changes to the textbox.

My problem is how to know whether there has been some changes to the Person object so that I can initiate the prompt. I had intended to use BindingManagerBase’s currentChanged event but this only checks if you have changed which item you are working on the list. I also can’t check for the textbox since the previous and next button manipulate it also, which I do not want to prompt the user for.

  • 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-13T15:09:49+00:00Added an answer on May 13, 2026 at 3:09 pm

    You could implement INotifyPropertyChanged interface in your person class and then your GUI class can be notified every time a property changed in your Person class.

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

Sidebar

Related Questions

I currently have a functioning in-house Windows Forms application which extensively uses the DataGridView
I have a Windows GUI application that's using the Qt framework (currently version 3.3.5,
I have a windows form application that uses a Shared class to house all
I am currently converting what was a Console Application into a Windows Form application.
I have a C# windows forms application. The way I currently have it set
I am currently translating a windows form application, written in VB6, to a webpage
Currently we have a DLL that checks whether a username/password is a valid Windows
I have a dotnet windows service that's currently hung, but running. Is there anyway
I am currently using Windows Server 2008 Standard and have several Hyper V machines.
I have a current system which is build as a Windows Application, and does

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.