You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
793 B

1 month ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Data;
  4. using System.Drawing;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace ShenTun.ImageCollection.Common
  9. {
  10. public class ImageData
  11. {
  12. public ImageData()
  13. {
  14. tableImg = new DataTable();
  15. DataColumn colSelected = new DataColumn("selected");
  16. colSelected.DataType = System.Type.GetType("System.Int32");
  17. tableImg.Columns.Add(colSelected);
  18. DataColumn colExamImage = new DataColumn("examImage");
  19. colExamImage.DataType = System.Type.GetType("System.String");
  20. tableImg.Columns.Add(colExamImage);
  21. }
  22. public DataTable tableImg { get; set; }
  23. public static Bitmap Image;
  24. }
  25. }