C# Класс Habanero.Faces.Base.NumericUpDownMapper

Wraps a NumericUpDown control in order to display and capture a numeric property of the business object
Наследование: ControlMapper
Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
_numericUpDown INumericUpDown

Защищенные методы

Метод Описание
InternalUpdateControlValueFromBo ( ) : void

Updates the value on the control from the corresponding property on the represented IControlMapper.BusinessObject

NumericUpDownMapper ( INumericUpDown ctl, string propName, bool isReadOnly, IControlFactory factory ) : System

Constructor to instantiate a new instance of the class

Описание методов

InternalUpdateControlValueFromBo() защищенный Метод

Updates the value on the control from the corresponding property on the represented IControlMapper.BusinessObject
protected InternalUpdateControlValueFromBo ( ) : void
Результат void

NumericUpDownMapper() защищенный Метод

Constructor to instantiate a new instance of the class
protected NumericUpDownMapper ( INumericUpDown ctl, string propName, bool isReadOnly, IControlFactory factory ) : System
ctl INumericUpDown The control object to map
propName string The property name
isReadOnly bool Whether the control is read only. /// If so, it then becomes disabled. If not, /// handlers are assigned to manage key presses, depending on the strategy assigned to this mapper.
factory IControlFactory The control factory to be used when creating the controlMapperStrategy
Результат System

Описание свойств

_numericUpDown защищенное свойство

Teh actual INumericUpDown control being mapped to the IBusinessObject.IBOProp
protected INumericUpDown _numericUpDown
Результат INumericUpDown