microsoft / xaml-standard

XAML Standard : a set of principles that drive XAML dialect alignment
Other
805 stars 50 forks source link

Add DataGrid control #176

Open insinfo opened 7 years ago

insinfo commented 7 years ago

Displays hierarchical lists of information and supports selection and editing of the information.

<table >
  <tr>
    <th>Firstname</th>
    <th>Lastname</th> 
    <th>Age</th>
  </tr>
  <tr>
    <td>Jill</td>
    <td>Smith</td> 
    <td>50</td>
  </tr>
  <tr>
    <td>Eve</td>
    <td>Jackson</td> 
    <td>94</td>
  </tr>
</table>

tableview 10 tableview 4 tableview 3

tableview 2

tableview 1 tableview 13 tableview 12 tableview 11 tableview 9 tableview 8 tableview 7 tableview 6 tableview 5

dotMorten commented 7 years ago

That's already in the standard: Grid

birbilis commented 7 years ago

This is more of a DataGrid, not Grid layout container. Also some grids support rows with trees in them (hierarchical data binding)

insinfo commented 7 years ago

@birbilis exactly