Esempio n. 1
0
        /// <summary>
        /// Unconditionaly assingns new parent object and updates DOM element
        /// </summary>
        internal void SetParent(ISciterControl parent)
        {
            BindingContext = null;

            _parent = parent;

            ProcessBindingContextChange();
            UpdateDomElement();

            OnParentChanged(EventArgs.Empty);
        }
Esempio n. 2
0
        /// <summary>
        /// Unconditionaly assingns new parent object and updates DOM element
        /// </summary>
        internal void SetParent(ISciterControl parent)
        {
            BindingContext = null;

            _parent = parent;

            ProcessBindingContextChange();
            UpdateDomElement();

            OnParentChanged(EventArgs.Empty);
        }
Esempio n. 3
0
 /// <summary>
 /// Creates a new instance of the <see cref="ControlsCollection"/> class
 /// </summary>
 /// <param name="owner"></param>
 internal ControlsCollection(ISciterControl owner)
 {
     Debug.Assert(owner != null, "Owner cannot be null");
     _owner = owner;
 }