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

IAddChild() public method

This method is called by the parser when text appears under the tag in markup. As default Styles do not support text, calling this method has no effect.
public IAddChild ( string text ) : void
text string /// Text to add as a child. ///
return void
        void IAddChild.AddText (string text)
        {
            // Verify Context Access
            VerifyAccess();

            XamlSerializerUtil.ThrowIfNonWhiteSpaceInAddText(text, this);
        }

Same methods

DataTrigger::IAddChild ( Object value ) : void