internal void NotifyUpdated(GXPropertyEventArgs e)
 {
     if (OnUpdated != null)
     {
         OnUpdated(this, e);
     }
     if (Parent != null)
     {
         Parent.NotifyUpdated(this, e);
     }
 }
		/// <summary>
		/// Notifie
		/// </summary>
        protected virtual void NotifyPropertyChanged(GXPropertyEventArgs e)
        {
            if (OnUpdated != null)
            {
                OnUpdated(this, e);
            }
        }