gpt4 book ai didi

c#在失去焦点时将文本框格式化为货币

转载 作者:行者123 更新时间:2023-11-30 15:36:56 25 4
gpt4 key购买 nike

我在表单上有几个文本框列表,每个文本框代表数据库的一列。每次用户退出其中一个价格框时,我都想更新表格。这个列表的名称是 priceBox[]。我知道 lostFocus 事件,但我似乎无法想出一种方法让它为一个集合工作,而且这个列表可以增长,所以我不能有一个固定的数字。我还没有任何代码。如果有帮助,文本框控件包含在名为 panel1 的面板中。

我试过搜索,但找不到任何关于此的内容。仅适用于单个实例,例如更新 1 个文本框。

抱歉,如果这是重复的,但我确实尝试过搜索。我也是 c# 的新手。

谢谢。

最佳答案

一种方法是向面板添加 ControlAdded 处理程序,因此每次添加新文本框时,它都会自动为其添加 LostFocus 处理程序。下面一步一步:

为您的面板绑定(bind)一个处理程序 ControlAdded 事件,它类似于:

private void Panel1_ControlAdded(object sender, ControlEventArgs e)
{
var tb = e.Control as TextBox;
if (tb != null)
{
tb.LostFocus += new EventHandler(TextBox_LostFocus);
}
}

然后在 TextBox_LostFocus 中你可以添加任何你想要的逻辑

void TextBox_LostFocus(object sender, EventArgs e)
{
var tb = sender as TextBox;
if (tb != null)
{
// modify tb.Text here, possibly like this...
tb.Text = String.Format("{0:C}", Decimal.Parse(tb.Text));
}
}

更新所有现有控件(未测试)

foreach (TextBox in panel1.Controls)
{
tb.LostFocus += new EventHandler(TextBox_LostFocus);
}

关于c#在失去焦点时将文本框格式化为货币,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13225702/

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