| 1. |
What Is The Purpose Of External Ienumerables Used In Datagrid? |
Answer»
The example of holding the object type is shown below: public class Person Collection of these objects NEEDS to be created for the listing of them: List<Person> myList = new List<Person>(); To display the collection the DataGrid object is used like: dataGrid.ItemsSource=makeList; The example of holding the object type is shown below: public class Person Collection of these objects needs to be created for the listing of them: List<Person> myList = new List<Person>(); To display the collection the DataGrid object is used like: dataGrid.ItemsSource=makeList; |
|