如何在WindowsApplication中的用户控件中清除文本

如何在WindowsApplication中的用户控件中清除文本

本文介绍了如何在WindowsApplication中的用户控件中清除文本框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

我正在使用UserControl搜索(如Google)的目的.
在此,我使用TextBox和Listview,具体取决于TextBox
值我在列表视图中搜索项目.

问题:
根据UserControl文本框的值,我将相关数据保存到数据库中.
保存记录后.我需要清除TextBox中的文本.

Hi All,

I am using UserControl for searching(like google) purpouse.
In this i am using TextBox and Listview, Depending on TextBox
Value i am searching items in the listview.

Problem:
Depending on UserControl textbox value I am saving related data into database.
Once records are saved.I need to clear text in the TextBox .

推荐答案

foreach(TextBox textbox in this.Controls.OfType<TextBox>())
{
   textbox.Text = string.Empty;
}



TextBox1.Text="";


这篇关于如何在WindowsApplication中的用户控件中清除文本框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 00:25