1

New to c# i was wondering if you can bind a sql or access data table to a property grid? I'm using Vs2010.

user1304232
  • 121
  • 1
  • 2
  • 9
  • quite different from a regular gridview, but seems to be possible (http://msdn.microsoft.com/en-us/library/system.windows.forms.control.databindings.aspx) – MilkyWayJoe May 02 '12 at 21:16

1 Answers1

0

Are you restricted to using a DataTable? Or could you convert it to a generic list, then bind the Property Grid control to that?

  1. Convert DataTable to Generic List

  2. Bind To Property Grid

Community
  • 1
  • 1
Noah Heldman
  • 6,724
  • 3
  • 40
  • 40