绑定数据源 public void Data(){DataTable td = new DataTable();DataRow row = td.NewRow();foreach (GridColumn item in gridView1.Columns){DataColumn it = new DataColumn(item.FieldName, typeof(String));if (item.FieldName == "check")//添加复选框{td.Columns.Add(…
In this tutorial, we will build a simple app to display a collection of recipe photos in grid layout. Here are what you’re going to learn: Introduction to UICollectionView How to Use UICollectionView to build a simple Grid-based layout Customizing th…