2 在“工具箱”拖动button控件到“Form.cs”
using System
using System.Collections.Generic
using System.ComponentModel
using System.Data
using System.Drawing
using System.Text
using System.Windows.Forms
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent()
}
private void button1_Click(object sender, EventArgs e)
{
//TODO:这里写你需要执行的代码
}
}
}
3.2 手写代码
注意:有不同的事件,你可以在按钮“属性”选项框中找到闪电符号,点击进入事件。里面有不同的事件,选择你需要的双击即可进入代码编辑。
web窗体中button默认生成的html控件为<input type="submit" />,即提交表单按钮,不论button是否编写事件,客户端均会与服务器产生交互,所以会有页面重载的情况。不想设置为提交按钮,只需把button属性UseSubmitBehavior修改为False即可,这样最终生成的html控件会变成<input type="button" />
如果不行,设置button的onClientClick属性为"javascript:return"则按钮不再响应任何事件
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)