本文介绍了增加Textbox_Textchanged +1的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在文本框中增加一个数字例如

在文本框中当我写下10页面加载时,数字应该是11

所以我想要增加+1



这是我的代码。这使得stackoverflow。洞计算机冻结。



  private   void  TextBoxKundnr_TextChanged( object  sender,EventArgs e)
{

int serialNo = Convert.ToInt32(TextBoxKundnr.Text);
serialNo ++;
TextBoxKundnr.Text = serialNo.ToString(CultureInfo.InvariantCulture);


}

}
解决方案



I want to increase a number in a textbox for example
In the textbox when i write 10 the next time the page load the number should be 11
So i want to increase by +1

this is my code. this make a stackoverflow. the hole computer freezes.

private void TextBoxKundnr_TextChanged(object sender, EventArgs e)
        {

            int serialNo = Convert.ToInt32(TextBoxKundnr.Text);
            serialNo++;
            TextBoxKundnr.Text = serialNo.ToString(CultureInfo.InvariantCulture);


            }

        }
解决方案



这篇关于增加Textbox_Textchanged +1的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-15 01:56