public virtual string Value { get { return m_Value; } set { m_Value = value; } }
------解决方案--------------------
C# code
public virtual string Value
{
get {
return m_Value;
}
set {
m_Value = value;
textBox1_TextChanged(this, new EventArgs());//直接调用文本框的TextChanged事件
//但是无法判断这个value是否发生变化
}
}
------解决方案--------------------