在Windows Forms和C#中,我继承自TextBox类。我从TextBox重写Text属性。一切顺利,直到我尝试使用TextChanged事件。 OnTextChanged事件在此处无法正常工作,因为未调用Text.set属性。
Initial field content 123, txpText.Text = 123
Field content changed to a , txpText.Text still 123
Field content changed to aa , txpText.Text still 123
Field content changed to aaa , txpText.Text still 123
这是我的自定义TextBox代码
public class ShowPartialTextBox : System.Windows.Forms.TextBox
{
private string _realText;
public override string Text
{
get { return _realText; }
set // <--- Not invoked when TextChanged
{
if (value != _realText)
{
_realText = value;
base.Text = _maskPartial(_realText);
//I want to make this _maskPartial irrelevant
}
}
}
protected override void OnTextChanged(EventArgs e)
{
//Always called. Manually invoke Text.set here? How?
base.OnTextChanged(e);
}
private string _maskPartial(string txt)
{
if (txt == null)
return string.Empty;
if (_passwordChar == default(char))
return txt;
if (txt.Length <= _lengthShownLast)
return txt;
int idxlast = txt.Length - _lengthShownLast;
string result = _lpad(_passwordChar, idxlast) + txt.Substring(idxlast);
return result;
}
}
这是Form类
public partial class Form1 : Form
{
private ShowPartialTextBox txpText;
private void InitializeComponent()
{
txpText = new ShowPartialTextBox();
txpText.Text "123";
txpText.TextChanged += new System.EventHandler(this.txpText_TextChanged);
}
private void txpText_TextChanged(object sender, EventArgs e)
{
label1.Text = txpText.Text; //always shows 123
}
}
我使用_maskPartial。它正在改变显示的文本,同时仍然保留其真实内容。我希望这个自定义TextBox“几乎”模拟PasswordChar属性,显示最后x个字符。
答案 0 :(得分:3)
在Text属性设置器上设置断点时很容易看到。您假设在文本框中键入将调用setter。它没有。一个解决方法就是:
protected override void OnTextChanged(EventArgs e) {
_realText = base.Text;
base.OnTextChanged(e);
}
但你必须使用_maskPartial()来完成它,它肯定不是无关紧要的。