Я создаю собственный MaskedTextBox только для даты. Теперь я хочу скрыть свойство Mask MaskedTextBox от своих пользователей.
EDIT:
public class CustomDateMask:System.Windows.Forms.MaskedTextBox
{
public new string Mask
{
get;
private set;
}
public CustomDateMask()
{
this.Mask = @"00/00/2\000"; // this property should not be set by any one now
this.ValidatingType = typeof(System.DateTime); // this property should not be set by any one now
}
}
Что мне делать, чтобы никто не мог установить это свойство