'Declaration Public Property GroupsSource As IEnumerable
public IEnumerable GroupsSource {get; set;}
The developer can use only one of Groups or GroupsSource properties to add groups to the control. This allows the Groups collection to be populated via a binding on the GroupsSource property. When GroupsSource is in use, setting this property to null will remove the collection and restore use to Groups (which will be an empty collection).
Public Class Car Public Name As String Public Year As Integer Public Color As String End Class
public class Car { public string Name {get; set;} public int Year {get; set;} public string Color{get; set;} }
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2