objectimageurleditor.cs

来自「毕业设计关系b/s系统 毕业设计管理工作 毕业设计管理数据」· CS 代码 · 共 29 行

CS
29
字号
//------------------------------------------------------------------------------
// Copyright (c) 2000-2003 Microsoft Corporation. All Rights Reserved.
//------------------------------------------------------------------------------

namespace Microsoft.Web.UI.WebControls.Design
{
    /// <summary>
    /// Provides an editor for visually picking an image URL.
    /// </summary>
    public class ObjectImageUrlEditor : ObjectUrlEditor
    {
        /// <summary>
        /// Gets the caption for the URL.
        /// </summary>
        protected override string Caption
        {
            get { return DesignUtil.GetStringResource("ImageUrlCaption"); }
        }

        /// <summary>
        /// Gets the filter to use.
        /// </summary>
        protected override string Filter
        {
            get { return DesignUtil.GetStringResource("ImageUrlFilter"); }
        }
    }
}

⌨️ 快捷键说明

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