objectimageurleditor.cs
来自「浏览器端看到树型目录结构,用户可以完整地看到像windows资源管理器一样的效果」· 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 + -
显示快捷键?