gpt4 book ai didi

c# - 恢复文本框 C# 的上一个条目

转载 作者:太空宇宙 更新时间:2023-11-03 17:46:02 26 4
gpt4 key购买 nike

正在如下验证文本框,假设将弹出用无效数字消息覆盖文本框条目,单击“确定”后我希望显示之前被覆盖的有效条目。

我如何在 C# 中做到这一点?

private void cor_o_gain_Validating(object sender, CancelEventArgs e)
{
try
{
int entered = int.Parse(cor_o_gain.Text);
if (entered > 255)
{
e.Cancel = true;
MessageBox.Show("Enter the number between 0 and 255");
}
}
catch (FormatException)
{
// e.Cancel = true;
}
}

最佳答案

您也可以简单地调用 Undo() 方法(如果您正在谈论 Windows 窗体文本框)

关于c# - 恢复文本框 C# 的上一个条目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4157606/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com