예제 #1
0
        internal TriggerBase(Type associatedObjectTypeConstraint)
        {
            this.associatedObjectTypeConstraint = associatedObjectTypeConstraint;
            TriggerActionCollection value = new TriggerActionCollection();

            SetValue(ActionsPropertyKey, value);
        }
예제 #2
0
 internal Trigger()
 {
     _actions = new TriggerActionCollection();
 }