Class ObjectPropertyItem<T>
- Namespace
- HeBianGu.Control.PropertyGrid
- Assembly
- HeBianGu.Control.PropertyGrid.dll
泛型类型基类
public class ObjectPropertyItem<T> : ObjectPropertyItem, INotifyPropertyChanged, IDisplayer, IPropertyItem, IDataErrorInfo
Type Parameters
T
- Inheritance
-
ObjectPropertyItem<T>
- Implements
- Derived
- Inherited Members
- Extension Methods
Constructors
ObjectPropertyItem(PropertyInfo, object)
public ObjectPropertyItem(PropertyInfo property, object obj)
Parameters
property
PropertyInfoobj
object
Properties
Error
Gets an error message indicating what is wrong with this object.
public string Error { get; }
Property Value
- string
An error message indicating what is wrong with this object. The default is an empty string ("").
Flag
public string Flag { get; set; }
Property Value
this[string]
Gets the error message for the property with the given name.
public string this[string columnName] { get; }
Parameters
columnName
stringThe name of the property whose error message to get.
Property Value
- string
The error message for the property. The default is an empty string ("").
Message
说明
public string Message { get; set; }
Property Value
Value
说明
[Browsable(false)]
public virtual T Value { get; set; }
Property Value
- T
Methods
CheckType(T, out string)
验证数据类型是否合法
protected virtual bool CheckType(T value, out string error)
Parameters
value
Terror
string
Returns
GetValue()
protected virtual T GetValue()
Returns
- T
GetValue<R>()
protected R GetValue<R>()
Returns
- R
Type Parameters
R
LoadValue()
从实体中加载数据到页面
public override void LoadValue()
SetValue(T)
protected virtual void SetValue(T value)
Parameters
value
T