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
30 lines
793 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ShenTun.ImageCollection.Common
|
|
{
|
|
public class ImageData
|
|
{
|
|
public ImageData()
|
|
{
|
|
tableImg = new DataTable();
|
|
DataColumn colSelected = new DataColumn("selected");
|
|
colSelected.DataType = System.Type.GetType("System.Int32");
|
|
tableImg.Columns.Add(colSelected);
|
|
|
|
DataColumn colExamImage = new DataColumn("examImage");
|
|
colExamImage.DataType = System.Type.GetType("System.String");
|
|
tableImg.Columns.Add(colExamImage);
|
|
|
|
}
|
|
public DataTable tableImg { get; set; }
|
|
|
|
public static Bitmap Image;
|
|
|
|
}
|
|
}
|