2011-06-25 56 views
0

我已經在Google上快速瀏覽了一下,並沒有提供任何簡單的東西。如何清除C#文本框中的所有數據/字符串#

我曾嘗試:

textBox5.Clear(); 

textBox5.Text=(""); 

textBox5.Text="".ToString(); 
+1

它有幫助嗎? –

+1

'「」.ToString()'!這只是爲了確定嗎? – Vlad

+2

當你把'te​​xtBox5.Text =「」'會發生什麼?你是否已經通過代碼來檢查該行是否被實際打過? –

回答

4

你可以嘗試:

foreach (Control ctl in Parent.Controls) { 
if (ctl.GetTyep()== TextBox) 
     ctl.text = ""; 
} 

而且你爲什麼要這麼做

textbox.Text = (""); //You don't need the parenthesis here 
    textbox.Text = "".toString(); //the .toString() is definitly not needed. 

如果你只是想對一個文本框,然後:

myTextBox.Text = String.Empty; 

myTextBox.Text = ""; 
+0

如果'textBox5.Text =「」'沒有幫助,爲什麼'TextBox5.Text = string.Empty'呢?我只想對單個控件執行此操作 – Mike

1
TextBox5.Text = string.Empty; 

應該是沒有什麼比這更困難。

+2

? – Vlad

+0

它工作的是問題 – ChrisBint

+0

@Chris:OP報告他試過了。 – Vlad