/// <summary>
		/// Bogus and not needed, it is only needed to fullfill the IObserveableList
		/// </summary>
		/// <param name="aObject">
		/// Object changed <see cref="System.Object"/>
		/// </param>
		/// <param name="aAction">
		/// Action <see cref="EListAction"/>
		/// </param>
		/// <param name="aPath">
		/// Path to changed object <see cref="System.Int32"/>
		/// </param>
		public override void ListChildChanged (object aObject, EListAction aAction, int[] aPath)
		{
			//if (aAction == EListAction.Add)

			Gtk.Application.Invoke (delegate {
				base.ListChildChanged (aObject, aAction, aPath);
			});
		}
Ejemplo n.º 2
0
        /// <summary>
        /// Bogus and not needed, it is only needed to fullfill the IObserveableList
        /// </summary>
        /// <param name="aObject">
        /// Object changed <see cref="System.Object"/>
        /// </param>
        /// <param name="aAction">
        /// Action <see cref="EListAction"/>
        /// </param>
        /// <param name="aPath">
        /// Path to changed object <see cref="System.Int32"/>
        /// </param>
        public override void ListChildChanged(object aObject, EListAction aAction, int[] aPath)
        {
            //if (aAction == EListAction.Add)

            Gtk.Application.Invoke(delegate {
                base.ListChildChanged(aObject, aAction, aPath);
            });
        }
Ejemplo n.º 3
0
 /// <summary>
 /// Bogus and not needed, it is only needed to fullfill the IObserveableList
 /// </summary>
 /// <param name="aObject">
 /// Object changed <see cref="System.Object"/>
 /// </param>
 /// <param name="aAction">
 /// Action <see cref="EListAction"/>
 /// </param>
 /// <param name="aPath">
 /// Path to changed object <see cref="System.Int32"/>
 /// </param>
 public virtual void ListChildChanged(object aObject, EListAction aAction, int[] aPath)
 {
 }