自动删除“文本框”和“文本框”标签.Text = focus leave为空
本文关键字:文本框 文本 focus leave 为空 Text 标签 删除 | 更新日期: 2023-09-27 18:11:58
我有代码,windows窗体开始只有1个Label
和1个TextBox
,当用户开始在TextBox1
上键入时,它创建了一个新的文本框和标签向下(也改变了2个Buttons
的位置并改变了窗口窗体的大小,它恰好最多10个文本框+ 10个标签(侧面)如:
(label1) Enter Name 1: - Textbox1 Imput
(label2) Enter Name 2: - Textbox2 Imput
(label1) Enter Name 3: - Textbox3 Imput
...
它工作得很好,但是有一个小"问题":
- 我的代码创建了一个新的
TextBox
/Label
当用户开始输入最后一个TextBox
例如,如果用户停止在 - 因此,如果用户从
TextBox7
选项卡到TextBox8
并离开TextBox8
(不输入文本到tb8),我希望Delete
自动生效
Textbox7
上,我的代码将创建TextBox8
,尽管它不需要,也不包含文本(空白),我的代码不能完美地工作(将在下面解释),如果我点击Button
,将验证最后的TextBox
文本是否为Empty
,如果是,Delete
文本框和标签将在侧面并更改Buttons
和窗口窗体大小的本地化)。
我有太多的问题,因为TextBox
2到10是在运行时创建的,它不可能在代码中引用这些"未来"的TextBox
,因为我得到错误说它不存在于实际代码中。
当TextBox.Text
是Empty
时,TextBox
和标签Delete
在TextBox
焦点上离开的问题是,如果我使用鼠标单击焦点在另一个地方,但如果我按tab键Delete
2 TextBox
并崩溃并返回错误:索引12(可以是任何数字)超出范围。
查看我的代码创建新的TextBox
和标签+调整大小窗体和窗口窗体的大小在txtNomecategoria_TextChanged:
public partial class cad_produto_acessorios_novo : Form
{
string testelogico;
int c;
int n = 1;
int n2 = 25;
int n3 = 65;
int n4 = 57;
int n5 = 152;
public cad_produto_acessorios_novo()
{
InitializeComponent();
}
private void txtNomecategoria_TextChanged(object sender, EventArgs e)
{
if (txtNomecategoria.TextLength > 1)
{
n++;
if (n <= 1)
{
n = 2;
}
if (n >= 1 && n <= 2)
{
n2 = n2 + 30;
n3 = n3 + 30;
n4 = n4 + 30;
n5 = n5 + 30;
gpbCategoria.Size = new System.Drawing.Size(283, n4);
this.Height = n5;
btnApagar.Location = new Point(108, n3);
btnSalvar.Location = new Point(212, n3);
TextBox txt = new TextBox();
txt.Name = "txtAcessorio" + n;
txt.Text = "";
txt.Size = new System.Drawing.Size(189, 26);
txt.Location = new Point(87, n2);
testelogico = txt.Name;
gpbCategoria.Controls.Add(txt);
txt.TextChanged += new EventHandler(new_onchange);
txt.Leave += new EventHandler(erase_onLeave);
Label lbl = new Label();
lbl.Name = "lblAcessorio" + n;
lbl.Text = "Acessório Nº" + n + ":";
lbl.Location = new Point(4, n2 + 5);
gpbCategoria.Controls.Add(lbl);
}
else
{
n--;
}
}
}
注意,它创建了2个新的事件为新的运行时创建TextBox
:
txt.TextChanged += new EventHandler(new_onchange);
txt.Leave += new EventHandler(erase_onLeave);
所以我们开始(创建新的TextBox/Label
+ resize windowsform等):
void new_onchange(object sender, EventArgs e)
{
cadeianovoscampos(sender as TextBox, e);
}
private void cadeianovoscampos(TextBox _text, EventArgs e)
{
n++;
if (_text.Text != null)
{
if (_text.Name == "txtAcessorio2")
{
c = 3;
}
else
{
if (_text.Name == "txtAcessorio3")
{
c = 4;
}
else
{
if (_text.Name == "txtAcessorio4")
{
c = 5;
}
else
{
if (_text.Name == "txtAcessorio5")
{
c = 6;
}
else
{
if (_text.Name == "txtAcessorio6")
{
c = 7;
}
else
{
if (_text.Name == "txtAcessorio7")
{
c = 8;
}
else
{
if (_text.Name == "txtAcessorio8")
{
c = 9;
}
else
{
if (_text.Name == "txtAcessorio9")
{
c = 10;
}
}
}
}
}
}
}
}
if (n >= 1 && n <= c)
{
n2 = n2 + 30;
n3 = n3 + 30;
n4 = n4 + 30;
n5 = n5 + 30;
gpbCategoria.Size = new System.Drawing.Size(283, n4);
this.Height = n5;
btnApagar.Location = new Point(108, n3);
btnSalvar.Location = new Point(212, n3);
TextBox txt = new TextBox();
txt.Name = "txtAcessorio" + n;
txt.Text = "";
txt.Size = new System.Drawing.Size(189, 26);
txt.Location = new Point(87, n2);
gpbCategoria.Controls.Add(txt);
testelogico = txt.Name;
btnSalvar.Tag = 2;
txt.TextChanged += new EventHandler(new_onchange);
txt.Leave += new EventHandler(erase_onLeave);
Label lbl = new Label();
lbl.Name = "lblAcessorio" + n;
lbl.Text = "Acessório Nº" + n + ":";
lbl.Location = new Point(4, n2 + 5);
gpbCategoria.Controls.Add(lbl);
}
else
{
n--;
}
}
}
和删除TextBox/Labels
+调整大小windowsform等文本框的焦点离开(如果空):
void erase_onLeave(object sender, EventArgs e)
{
cadeiaapagarcampos(sender as TextBox, e);
}
private void cadeiaapagarcampos(TextBox _text, EventArgs e)
{
if (_text.Text == "")
{
n--;
if (gpbCategoria.Controls.Count < 4)
{
}
else
{
if (n >= 1 && n <= 10)
{
n2 = n2 - 30;
n3 = n3 - 30;
n4 = n4 - 30;
n5 = n5 - 30;
int count = gpbCategoria.Controls.Count - 2;
gpbCategoria.Size = new System.Drawing.Size(283, n4);
this.Height = n5;
btnApagar.Location = new Point(108, n3);
btnSalvar.Location = new Point(212, n3);
gpbCategoria.Controls.Remove(_text);
gpbCategoria.Controls.RemoveAt(count);
}
}
}
}
这真的很难解释,因为代码很大,只有知道代码是如何工作的人才有可能解决问题。如果我需要添加任何额外的信息,只要求,它的附近,但有了你的帮助,我可以试着让它工作。
快速总结(可以试试呵呵)
我想修复:1 - Delete
当前TextBox
和侧Label
在运行时创建,如果Focus
离开当前TextBox
(如果.Text
是Empty
):它只适用于当我使用鼠标点击窗体的任何部分的焦点离开,但如果我使用标签在TextBox
到Focus
离开,它只是不工作,崩溃和返回错误。2 -添加Button
保存功能来检查最后创建的TextBox
是否为空,如果是,它将Delete
最后在运行时创建TextBox/Label
(侧侧),调整窗口形状和更改Button
本地化(可以使用我开发的当前Delete
代码来进行这些更改)
就是这样,但我知道它很大,很难理解,我会尝试,但它真的很大,不知道整个代码是如何工作的,是不可能理解/修复的。
如果文本为空则删除文本框
更新:我上传了一个项目与我的代码从下面到github。你可以用sharpdevelop 4.3打开我的项目。
在Textbox的Event中,你可以调用/触发TextBox_LeaveEvent方法:
void TextBox_LeaveEvent(object sender, EventArgs e)
{
var tb = sender as TextBox;
// add another textbox if this tb has text
if(textboxList.Count<5 && tb.Text.Length>0){
var newTextBox = getNewTextBox(textboxList.Count);
textboxList.Add(newTextBox);
} // remove textbox if it has no text
else if(tb.Text.Length == 0){
RemoveTextBox(tb);
}
}
执行以下操作:
- 如果当前文本框(触发事件的发送者)有文本,它将添加另一个文本框到文本框的通用列表:
List<TextBox> textboxList = new List<TextBox>();
- 如果文本框没有文本(
tb.Text.Length == 0
),则通过调用RemoveTextBox 将其从列表和windows窗体中删除。
这是删除文本框
的方法。void RemoveTextBox(TextBox tb){
// this.Controls.RemoveByKey(tb.Name);
int tbIndex = this.Controls.IndexOf(tb);
this.Controls[tbIndex].Dispose();
textboxList.Remove(tb);
}
将文本框动态添加到表单
TextBox getNewTextBox(int i)
{
var tb = new TextBox();
tb.Location = new System.Drawing.Point(220, 90 + i * 24);
tb.Name = "tb_" + i.ToString();
tb.Size = new System.Drawing.Size(80,20);
tb.Text = "textbox_"+i.ToString(); //String.Empty;
tb.Leave += new System.EventHandler(this.TextBox_LeaveEvent);
this.Controls.Add(tb);
this.Refresh();
return tb;
}
关于代码的一些指针
从上面的代码示例中,我假设您可以通过使用if()或if()或使用switch(参见msdn或dotnetperls)将嵌套的if () { if (){} else { if}
更改为更简单的东西。据我所知,从你给的代码,你可能可以删除很多代码,如果你使用标签和文本框的通用列表。
string textBoxName = _text.Name;
switch (textBoxName)
{
case "txtAcessorio2":
c= 3;
break;
case "txtAcessorio3":
c=4;
break;
default:
c=0;
break;
}