Disclaimer The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.
Implement data-bound controls.
There's a big section at WindowsForms.net on the DataGridView. The DataGridView is the successor to the DataGrid. They added more cell types: Image, Combobox, Link, Button. (They only had Textbox and Checkbox in 1.1). You can place more than one control in a cell. There are now events associated with the cell itself, instead of handling all the events on the datagrid control. The CellFormatting event allows you to control the look of specific cells.
The data binding subsystem has undergone a major overhaul. As in 1.1, there is a different binding system for WinForms than WebForms. Again there is a section at WindowsForms.Net dedicated to data binding, although not very comprehensive. Dinesh Chandnani has a series of good blog entries on databinding. The main component is called the BindingSource. You can make your own components bindable by using the BindingList generic.
I'm not sure what they mean by complex data binding. Handling some of the events in the BindingSource?
The BindingNavigator control is a Toolstrip control that hooks to a BindingSource that has the first,prev,next,last buttons already implemented. You would use that to navigate through records in a dataset on a windows form.
The DataConnector component no longer exists. It was renamed to BindingSource in earlier Whidbey releases.
Alright, I give up. My wife tells me that I stink at looking for things. My keys could be right in front of me and I won't see them. With that disclaimer in mind, I've been looking 15 minutes for the "Data Form Wizard". It clearly existed in 1.1. Where is it? If anyone knows where it is, let me know.
Next up->Connections and Transactions