FineUI/FineUI.Examples/button/button_icon.aspx.cs

22 lines
452 B
C#
Raw Normal View History

2013-11-01 14:13:51 +08:00
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace FineUI.Examples.button
{
public partial class button_icon : PageBase
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void btnCustomIcon_Click(object sender, EventArgs e)
{
btnCustomIcon.IconUrl = "~/images/16/8.png";
}
}
}