1234567891011121314151617181920212223242526272829303132333435 |
- using System.Drawing;
- namespace PaintDotNet
- {
- /// <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;
- }
- }
- }
|