namespace Dongke.WinForm.Controls
{
///
/// 必须输入项目接口
///
public interface IMustInput
{
#region 属性
///
/// 获取或设置控件是否是必须输入项目。
///
bool MustInput
{
get;
set;
}
///
/// 获取或设置控件是否显示必须输入项目提示。
///
bool ShowMustInputAlert
{
get;
set;
}
#endregion
#region 方法
///
/// 清除输入项
///
void ClearValue();
#endregion
}
}