我将 TextBox WebControl 扩展为一种“DateTextBox”,它DateValue
在代码隐藏中将其值作为属性 () 公开:
public sealed class DateTextBox : TextBox
{
public DateTime ?DateValue
{
/* ToDateFromUserInterface() and ToUserInterfaceString() are both
extension methods */
get
{
return
(
String.IsNullOrEmpty(Text) ?
new DateTime?() :
Text.ToDateFromUserInterface()
);
}
set
{
if (value != null) Text = ((DateTime)value).ToUserInterfaceString();
}
}
}
鉴于此控件仅应与日期一起使用,因此没有理由Text
从其父级继承该属性。
有什么办法可以隐藏它吗?.. 除了实现 a NotImplementedException
,像这样:
new public String Text
{
get { throw new NotImplementedException(); }
set { throw new NotImplementedException(); }
}