Esempio n. 1
0
        /// <summary>
        /// Called when event bindings changed.
        /// </summary>
        /// <param name="o">The o.</param>
        /// <param name="args">The <see cref="System.Windows.DependencyPropertyChangedEventArgs"/> instance containing the event data.</param>
        public static void OnEventBindingsChanged(DependencyObject o, DependencyPropertyChangedEventArgs args)
        {
            //  Cast the data.
            EventBindingCollection oldEventBindings = args.OldValue as EventBindingCollection;
            EventBindingCollection newEventBindings = args.NewValue as EventBindingCollection;

            //  If we have new set of event bindings, bind each one.
            if (newEventBindings != null)
            {
                foreach (EventBinding binding in newEventBindings)
                {
                    binding.Bind(o);
                }
            }
        }
Esempio n. 2
0
        /// <summary>
        /// Called when event bindings changed.
        /// </summary>
        /// <param name="o">The o.</param>
        /// <param name="args">The <see cref="System.Windows.DependencyPropertyChangedEventArgs"/> instance containing the event data.</param>
        public static void OnEventBindingsChanged(DependencyObject o, DependencyPropertyChangedEventArgs args)
        {
            //  Cast the data.
            EventBindingCollection oldEventBindings = args.OldValue as EventBindingCollection;
            EventBindingCollection newEventBindings = args.NewValue as EventBindingCollection;

            //  If we have new set of event bindings, bind each one.
            if (newEventBindings != null)
            {
                foreach (EventBinding binding in newEventBindings)
                {
                    binding.Bind(o);
#if SILVERLIGHT
                    //  If we're in Silverlight we don't inherit the
                    //  data context so we must set this helper variable.
                    binding.ParentElement = o as FrameworkElement;
#endif
                }
            }
        }
Esempio n. 3
0
 /// <summary>
 /// Sets the event bindings.
 /// </summary>
 /// <param name="o">The o.</param>
 /// <param name="value">The value.</param>
 public static void SetEventBindings(DependencyObject o, EventBindingCollection value)
 {
     o.SetValue(EventBindingsProperty, value);
 }
Esempio n. 4
0
 /// <summary>
 /// Sets the event bindings.
 /// </summary>
 /// <param name="o">The o.</param>
 /// <param name="value">The value.</param>
 public static void SetEventBindings(DependencyObject o, EventBindingCollection value)
 {
     o.SetValue(EventBindingsProperty, value);
 }