communityimagebutton.cs

来自「完全网站系统」· CS 代码 · 共 27 行

CS
27
字号
namespace ASPNET.StarterKit.Communities {
    using System;
    using System.Web.UI.WebControls;
    using System.ComponentModel;

    //*********************************************************************
    //
    // CommunityImageButton Class
    //
    // We need to override the base ImageButton control to modify the
    // ImageUrl to work with skins.
    //
    //*********************************************************************
	[Designer(typeof(ASPNET.StarterKit.Communities.CommunityDesigner))]	
    public class CommunityImageButton : ImageButton {
    
        override protected void OnInit(EventArgs e) {
            base.OnInit(e);
            
            // set the ImageUrl to app relative path
            ImageUrl = ResolveUrl(ImageUrl);
        }


    }
}

⌨️ 快捷键说明

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