using System.Drawing; namespace PaintDotNet { /// /// 封装文件名和缩略图 /// 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; } } }