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

📄 imagebutton(按钮启用与禁用).txt

📁 C# 是创新性的新式编程语言
💻 TXT
字号:
通过变动图片及BorderWidth值业对按钮启用或禁用

1.页面
<%@ Page language="c#" Codebehind="WebForm6.aspx.cs" AutoEventWireup="false" Inherits="Co_6.WebForm6" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
	<HEAD>
		<title>WebForm6</title>
		<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
		<meta name="CODE_LANGUAGE" Content="C#">
		<meta name="vs_defaultClientScript" content="JavaScript">
		<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
	</HEAD>
	<body MS_POSITIONING="GridLayout">
		<form id="Form1" method="post" runat="server">
			<asp:ImageButton id="ImageButton1" style="Z-INDEX: 101; LEFT: 152px; POSITION: absolute; TOP: 72px"
				runat="server" ImageUrl="back.gif" BorderWidth="1px" BorderStyle="Outset" ForeColor="White"></asp:ImageButton>
			<asp:Button id="Button1" style="Z-INDEX: 102; LEFT: 152px; POSITION: absolute; TOP: 144px" runat="server"
				Text="启用"></asp:Button>
			<asp:Button id="Button2" style="Z-INDEX: 103; LEFT: 232px; POSITION: absolute; TOP: 144px" runat="server"
				Text="禁用"></asp:Button>
			<asp:Label id="Label1" style="Z-INDEX: 104; LEFT: 152px; POSITION: absolute; TOP: 224px" runat="server">True</asp:Label>
		</form>
	</body>
</HTML>

2.代码
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;

namespace Co_6
{
	/// <summary>
	/// WebForm6 的摘要说明。
	/// </summary>
	public class WebForm6 : System.Web.UI.Page
	{
		protected System.Web.UI.WebControls.ImageButton ImageButton1;
		protected System.Web.UI.WebControls.Button Button1;
		protected System.Web.UI.WebControls.Label Label1;
		protected System.Web.UI.WebControls.Button Button2;
	
		private void Page_Load(object sender, System.EventArgs e)
		{
			// 在此处放置用户代码以初始化页面
		}

		#region Web 窗体设计器生成的代码
		override protected void OnInit(EventArgs e)
		{
			//
			// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
			//
			InitializeComponent();
			base.OnInit(e);
		}
		
		/// <summary>
		/// 设计器支持所需的方法 - 不要使用代码编辑器修改
		/// 此方法的内容。
		/// </summary>
		private void InitializeComponent()
		{    
			this.ImageButton1.Click += new System.Web.UI.ImageClickEventHandler(this.ImageButton1_Click);
			this.Button1.Click += new System.EventHandler(this.Button1_Click);
			this.Button2.Click += new System.EventHandler(this.Button2_Click);
			this.Load += new System.EventHandler(this.Page_Load);

		}
		#endregion

		private void ImageButton1_Click(object sender, System.Web.UI.ImageClickEventArgs e)
		{
			
			if(ImageButton1.BorderWidth==(Unit)1)//是否启用
			{
				Label1.Text=(Label1.Text=="True")?"False":"True";
			}
		}

		private void Button1_Click(object sender, System.EventArgs e)
		{
			//启用
			ImageButton1.ImageUrl="back.gif";
			ImageButton1.BorderWidth=(Unit)1;//立体效果

		}

		private void Button2_Click(object sender, System.EventArgs e)
		{
			//禁用
			ImageButton1.ImageUrl="unback.gif";
			ImageButton1.BorderWidth=(Unit)0;//平板效果
		}
	}
}

⌨️ 快捷键说明

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