//------------------------------------------------------ // // Constructors // //------------------------------------------------------ #region Constructors internal AutomationAttributeInfo( AutomationPropertyConverter converter, AutomationTextAttribute id, Type type ) { _id = id; _type = type; _converter = converter; }
//------------------------------------------------------ // // Constructors // //------------------------------------------------------ #region Constructors internal AutomationPropertyInfo( AutomationPropertyConverter converter, AutomationProperty id, Type type, object defaultValue ) { _id = id; _type = type; _defaultValue = defaultValue; _converter = converter; }