I find that I can just set the DataGridView.DataSource directly to the DataTable without using the BindingSource in between, which is what all of the tutorial i seen so far is using. So what is the difference between thrse two?
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
Some information here on how the use of a BindingSource is an improvement to the old way of binding directly to a DataTable.
http://msdn.microsoft.com/en-us/library/aa480734.aspx
In summary: