System.Windows.DataTrigger.IAddChild C# (CSharp) Method

IAddChild() public method

This method is called to Add a Setter object as a child of the Style.
public IAddChild ( Object value ) : void
value Object /// The object to add as a child; it must be a Setter or subclass. ///
return void
        void IAddChild.AddChild (Object value)
        {
            // Verify Context Access
            VerifyAccess();

            Setters.Add(Trigger.CheckChildIsSetter(value));
        }

Same methods

DataTrigger::IAddChild ( string text ) : void