如何清除文本块
我在 Adddata() 函数中添加文本 TextBlock Text1、Text2、Text3,如下所示。
if (i == 0)
{
Text1.Text = tagname.AlarmTag;
}
if (i == 1)
{
Text2.Text = tagname.AlarmTag;
}
if (i == 2)
{
Text3.Text = tagname.AlarmTag;
}
现在在deletedata()中我想清除三个文本块中的所有内容。 我怎样才能做到这一点?因为我找不到清除选项。我想一次清除三个文本块的文本。
I'm adding text TextBlock Text1,Text2,Text3 in Adddata() function as follow.
if (i == 0)
{
Text1.Text = tagname.AlarmTag;
}
if (i == 1)
{
Text2.Text = tagname.AlarmTag;
}
if (i == 2)
{
Text3.Text = tagname.AlarmTag;
}
Now in deletedata() I want to clear all contents in three textblock.
How can I do that? Because I cannot find Clear option. I want to clear text of three textblock at a time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
要“清除”数据:
To "clear" the data :
您可以将文本框的文本设置为空字符串。
您还可以定义自己的扩展方法。
然后,只需在定义扩展类的命名空间中包含一个
using
指令,您就可以执行以下操作:You could set the text of the textbox to an empty string.
You could also define your own extension method.
Then, just include a
using
directive for the namespace you defined your extension class in, and you can do:将其文本设置为空字符串?
Set their text to an empty string?