⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 imageinfo.cs

📁 Freetextbox是优秀的在线编辑器
💻 CS
字号:
namespace FreeTextBoxControls
{
    using System;

    public class ImageInfo
    {
        public ImageInfo()
        {
            this.Filename = string.Empty;
            this.PhysicalPath = string.Empty;
            this.AbsoluteWebPath = string.Empty;
            this.Width = 0;
            this.Height = 0;
            this.Size = 0;
            this.SizeString = string.Empty;
            this.ThumbnailAbsoluteWebPath = string.Empty;
            this.ThumbnailWidth = 0;
            this.ThumbnailHeight = 0;
            this.ThumbnailVSpace = 0;
        }


        public string AbsoluteWebPath;
        public string Filename;
        public int Height;
        public string PhysicalPath;
        public long Size;
        public string SizeString;
        public string ThumbnailAbsoluteWebPath;
        public int ThumbnailHeight;
        public int ThumbnailVSpace;
        public int ThumbnailWidth;
        public int Width;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -