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

📄 basewebpart.cs

📁 动易SiteFactory&#8482 网上商店系统1.0源代码
💻 CS
字号:
namespace PowerEasy.Web.UI
{
    using System;
    using System.Web.UI.WebControls.WebParts;

    public class BaseWebPart : BaseUserControl, IWebPart
    {
        private string m_CatalogIconImageUrl = string.Empty;
        private string m_Description = string.Empty;
        private string m_SubTitle = string.Empty;
        private string m_Title = string.Empty;
        private string m_TitleIconImageUrl = string.Empty;
        private string m_TitleUrl = string.Empty;

        public string CatalogIconImageUrl
        {
            get
            {
                return this.m_CatalogIconImageUrl;
            }
            set
            {
                this.m_CatalogIconImageUrl = value;
            }
        }

        public string Description
        {
            get
            {
                return this.m_Description;
            }
            set
            {
                this.m_Description = value;
            }
        }

        public string Subtitle
        {
            get
            {
                return this.m_SubTitle;
            }
            set
            {
                this.m_SubTitle = value;
            }
        }

        [WebDescription("标题"), WebBrowsable, WebDisplayName("标题"), Personalizable(PersonalizationScope.User)]
        public string Title
        {
            get
            {
                return this.m_Title;
            }
            set
            {
                this.m_Title = value;
            }
        }

        public string TitleIconImageUrl
        {
            get
            {
                return this.m_TitleIconImageUrl;
            }
            set
            {
                this.m_TitleIconImageUrl = value;
            }
        }

        public string TitleUrl
        {
            get
            {
                return this.m_TitleUrl;
            }
            set
            {
                this.m_TitleUrl = value;
            }
        }
    }
}

⌨️ 快捷键说明

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