我有一个文本框用户控件。我为最大长度的文本框创建了一个动态属性。
public int MaximumLength { get; set; }
private void txtLocl_KeyPress(object sender, KeyPressEventArgs e)
{
txtLocl.MaxLength = MaximumLength;//txtLocl is a Usercontrol Textbox..,
//txtLocl maxLength should be given by the user in WindowsForm
//that should be come to here...,
}
我向您展示了 Windows 窗体中的 UserControl 属性的图像
现在我想验证用户何时更改该属性中的值...,