12345678910111213141516171819202122232425262728293031323334353637383940 |
- using System;
- using System.Collections.Generic;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SmartCoalApplication
- {
- /// <summary>
- /// 封装文件名和缩略图
- /// </summary>
- internal class MostRecentFile
- {
- private string fileName;
- private Image thumb;
- public string FileName
- {
- get
- {
- return fileName;
- }
- }
- public Image Thumb
- {
- get
- {
- return thumb;
- }
- }
- public MostRecentFile(string fileName, Image thumb)
- {
- this.fileName = fileName;
- this.thumb = thumb;
- }
- }
- }
|