| 1234567891011121314151617181920212223242526272829303132333435363738 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace PaintDotNet.Base.Enum{    public enum ThumbnailMode    {        /// <summary>        /// 宽高缩放模式,可能变形        /// </summary>        UsrHeightWidth,        UsrHeightWidthBound,        /// <summary>        /// 指定宽度,高按比例        /// </summary>        UsrWidth,        /// <summary>        /// 指定宽(过小则不变),高按比例        /// </summary>        UsrWidthBound,        /// <summary>        /// 自定高度,宽按比例        /// </summary>        UsrHeight,        /// <summary>        /// 指定高(过小则不变),宽按比例        /// </summary>        UsrHeightBound,        /// <summary>        /// 剪切        /// </summary>        Cut,        NONE,    }}
 |