其他分享
首页 > 其他分享> > winfrom添加信息后的自动清空所有

winfrom添加信息后的自动清空所有

作者:互联网

重新设置所有文本框为空就行、

 

 

 if (flass)
                {
                    MessageBox.Show("添加成功", "提示信息");
                    this.tbSName.Text = "";
                    this.tbSAddress.Text="";
                    this.tbSTel.Text="";
                    this.tbState.Text = "";
                    this.tbClass.Text = "";


                }
                else
                {
                    MessageBox.Show("添加失败");
                }

 

标签:MessageBox,Show,winfrom,清空,tbState,添加,提示信息,Text
来源: https://www.cnblogs.com/hyh749/p/16383819.html