WizardConditionBinding Class

Wizard condition binding class.

Definition

Namespace: Aliquo.Windows.Wizard.Bindings
Assembly: Aliquo.Windows (in Aliquo.Windows.dll) Version: 5.0.9179.22654
C#
public class WizardConditionBinding : WizardInputBinding
Inheritance
Object    WizardInputBinding    WizardConditionBinding

Remarks

Allows to change the value of a property for a parameter (o several).

For example:


SourceValue=0
.


TargetName="email"
.


TargetProperty="ENABLED"
.


TargetValue=""
.


TargetOtherValue==""
.


When source value is 0, parameter named email will be disabled
.


When source value is other than 0, parameter email will be enabled
.

Constructors

WizardConditionBinding Class constructor.

Properties

SourceValue Value in current control to evaluate .
TargetName Name of the parameter(s) to change a property.
TargetOtherValue Property value for param TargetName when current value is other than SourceValue.
TargetProperty Name of the property to change its value.
TargetValue Property value for param TargetName when current value is SourceValue.

Methods

ToString Converts control settings into String.
(Overrides ObjectToString)

Extension Methods

GetAttributeFromT Get attribute from a class.
(Defined by ObjectExtensions)
ValidateDataAnnotations Validate class with validator of DataAnnotations.
(Defined by ObjectExtensions)

See Also