111,126
社区成员
发帖
与我相关
我的任务
分享
protected class MyTextBox : TextBox
{
public override string Text
{
get
{
string tempStr = base.Text;
tempStr = tempStr.Replace("\r\n", "\n");
return tempStr;
}
set
{
base.Text = value;
}
}
}