如何在C#实现点击一个“取消”的button键来关闭当前窗口,请教各位高手!
双击BUTTON后,输入:this.Close;这个方法我用了,但是没有作用,提示“错误1只有assignment、call、increment、decrement和ne...
双击BUTTON后,输入:this.Close;这个方法我用了,但是没有作用,提示“错误 1 只有 assignment、call、increment、decrement 和 new 对象表达式可用作语句”
代码如下:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace 淘宝自编工具
{
public partial class mainform : Form
{
public mainform()
{
InitializeComponent();
}
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
}
private void button2_Click(object sender, EventArgs e)
{
this.Close;
}
private void mainform_Load(object sender, EventArgs e)
{
}
}
} 展开
代码如下:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace 淘宝自编工具
{
public partial class mainform : Form
{
public mainform()
{
InitializeComponent();
}
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
}
private void button2_Click(object sender, EventArgs e)
{
this.Close;
}
private void mainform_Load(object sender, EventArgs e)
{
}
}
} 展开
8个回答
展开全部
private void button2_Click(object sender, EventArgs e)
{
ClientScriptManager cs = this.ClientScript;
cs.RegisterStartupScript(this.GetType(), "CLose", "window.close();", true);
}
{
ClientScriptManager cs = this.ClientScript;
cs.RegisterStartupScript(this.GetType(), "CLose", "window.close();", true);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
this.Close();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
少了括号。。大哥。。。。
this.Close()。
this.Close()。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Close是一个方法,而不是属性,所以你要用 记得()
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
private void button2_Click(object sender, EventArgs e)
{
this.Close();
}
{
this.Close();
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询