TextBox UserControl があります。MaximumLength の Textbox の動的プロパティを作成します。
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 プロパティのイメージを示します
今、ユーザーがそのプロパティの値をいつ変更したかを確認したい...