1. The bindingSource is working with a collection, I just want to have one "person" that I'm displaying on a winform. If I change the person, I want to just replace that instance, not add to a bindingSource and navigate. I don't want the navigating tool on the form either.
2. I want to have changes that are made to the current "person" flow up to the interface. A simple example would be a button, that changes the person's name directly. I use this as an example to demonstrate what I am looking for.
I don't want the Person object connected to a database, since my application will have multiple ways to create this and I am not concerned at this point about saving the data. This application is more geared toward showing an object while processing is being done and having that information flow up to the WinForm for the user to see progress.
Thanks.