在C# winform开发中,运行中停止的指令是什么

2024-12-12 15:45:15
推荐回答(4个)
回答1:

可以使用if判断键盘输入字符,使用return命令中止程序运行。代码: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 WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
} private void textBox1_TextChanged(object sender, EventArgs e)
{
string nowString = this.textBox1.Text[this.textBox1.Text.Length - 1].ToString();
if (nowString == this.textBox2.Text)
{
this.Dispose();
}
}
}
}
结果 输入g则中止运行

回答2:

你可以使用return语句实现。例如:在textbox中输入了一个字符,若此字符不为数字则停止操作,返回。ch=Textbox.text;if(!char.IsDigit(ch)){return;}//若是则进行相关的操作。。。。

回答3:

e.cancle=true

回答4:

if(){ return;}