using System.ComponentModel; namespace Tizen.NUI.Binding { /// /// When implemented in a renderer, registers a platform-specific effect on an element. /// [EditorBrowsable(EditorBrowsableState.Never)] internal interface IEffectControlProvider { /// /// Registers the effect with the element by establishing the parent-child relations needed for rendering on the specific platform. /// /// The effect to register. void RegisterEffect(Effect effect); } }