Example #1
0
        ///<summary>
        ///  Uses the action pipeline to invoke the method.
        ///</summary>
        ///<param name="target"> The object instance to invoke the method on. </param>
        ///<param name="methodName"> The name of the method to invoke. </param>
        ///<param name="view"> The view. </param>
        ///<param name="source"> The source of the invocation. </param>
        ///<param name="eventArgs"> The event args. </param>
        ///<param name="parameters"> The method parameters. </param>
        public static void Invoke(object target, string methodName, DependencyObject view = null, FrameworkElement source = null, object eventArgs = null, object[] parameters = null)
        {
            var message = new ActionMessage {
                MethodName = methodName
            };

            var context = new ActionExecutionContext {
                Target = target,
#if WinRT
                Method = target.GetType().GetRuntimeMethods().Single(m => m.Name == methodName),
#else
                Method = target.GetType().GetMethod(methodName),
#endif
                Message   = message,
                View      = view,
                Source    = source,
                EventArgs = eventArgs
            };

            if (parameters != null)
            {
                parameters.Apply(x => context.Message.Parameters.Add(x as Parameter ?? new Parameter {
                    Value = x
                }));
            }

            ActionMessage.InvokeAction(context);

            // This is a bit of hack but keeps message being garbage collected
            Log.Info("Invoking action {0} on {1}.", message.MethodName, target);
        }
Example #2
0
        static void SetTargetCore(DependencyPropertyChangedEventArgs e, DependencyObject d, bool setContext)
        {
            if (e.NewValue == e.OldValue || Execute.InDesignMode)
            {
                return;
            }

            var target       = e.NewValue;
            var containerKey = e.NewValue as string;

            if (containerKey != null)
            {
                target = IoC.GetInstance(null, containerKey);
            }
#if XFORMS
            Log.Info("Attaching message handler {0} to {1}.", target, d);
            Message.SetHandler(d, target);

            if (setContext && d is FrameworkElement)
            {
                Log.Info("Setting DC of {0} to {1}.", d, target);
                ((FrameworkElement)d).BindingContext = target;
            }
#else
            if (setContext && d is FrameworkElement)
            {
                Log.Info("Setting DC of {0} to {1}.", d, target);
                ((FrameworkElement)d).DataContext = target;
            }

            Log.Info("Attaching message handler {0} to {1}.", target, d);
            Message.SetHandler(d, target);
#endif
        }
Example #3
0
        static void SetTargetCore(DependencyPropertyChangedEventArgs e, DependencyObject d, bool setContext)
        {
            if (e.NewValue == e.OldValue || (Execute.InDesignMode && e.NewValue is string))
            {
                return;
            }

            var target = e.NewValue;

#if XFORMS
            Log.Info("Attaching message handler {0} to {1}.", target, d);
            Message.SetHandler(d, target);

            if (setContext && d is FrameworkElement)
            {
                Log.Info("Setting DC of {0} to {1}.", d, target);
                ((FrameworkElement)d).BindingContext = target;
            }
#else
            if (setContext && d is FrameworkElement)
            {
                Log.Info("Setting DC of {0} to {1}.", d, target);
                ((FrameworkElement)d).DataContext = target;
            }

            Log.Info("Attaching message handler {0} to {1}.", target, d);
            Message.SetHandler(d, target);
#endif
        }
        static void BindAppBar(DependencyObject view)
        {
            var page = view as PhoneApplicationPage;

            if (page == null || page.ApplicationBar == null)
            {
                return;
            }

            var triggers = Interaction.GetTriggers(view);

            foreach (var item in page.ApplicationBar.Buttons)
            {
                var button = item as IAppBarActionMessage;
                if (button == null || string.IsNullOrEmpty(button.Message))
                {
                    continue;
                }

                var parsedTrigger  = Parser.Parse(view, button.Message).First();
                var trigger        = new AppBarItemTrigger(button);
                var actionMessages = parsedTrigger.Actions.OfType <ActionMessage>().ToList();
                actionMessages.Apply(x => {
                    x.applicationBarSource = button;
                    parsedTrigger.Actions.Remove(x);
                    trigger.Actions.Add(x);
                });

                triggers.Add(trigger);
            }

            foreach (var item in page.ApplicationBar.MenuItems)
            {
                var menuItem = item as IAppBarActionMessage;
                if (menuItem == null || string.IsNullOrEmpty(menuItem.Message))
                {
                    continue;
                }

                var parsedTrigger  = Parser.Parse(view, menuItem.Message).First();
                var trigger        = new AppBarItemTrigger(menuItem);
                var actionMessages = parsedTrigger.Actions.OfType <ActionMessage>().ToList();
                actionMessages.Apply(x => {
                    x.applicationBarSource = menuItem;
                    parsedTrigger.Actions.Remove(x);
                    trigger.Actions.Add(x);
                });

                triggers.Add(trigger);
            }
        }
Example #5
0
        ///<summary>
        ///  Checks if the <see cref="ActionMessage" /> -Target was set.
        ///</summary>
        ///<param name="element"> DependencyObject to check </param>
        ///<returns> True if Target or TargetWithoutContext was set on <paramref name="element" /> </returns>
        public static bool HasTargetSet(DependencyObject element)
        {
            if (GetTarget(element) != null || GetTargetWithoutContext(element) != null)
            {
                return(true);
            }
#if XFORMS
            return(false);
#else
            var frameworkElement = element as FrameworkElement;
            if (frameworkElement == null)
            {
                return(false);
            }

            return(ConventionManager.HasBinding(frameworkElement, TargetProperty) ||
                   ConventionManager.HasBinding(frameworkElement, TargetWithoutContextProperty));
#endif
        }
Example #6
0
        static void SetTargetCore(DependencyPropertyChangedEventArgs e, DependencyObject d, bool setContext) {
            if (e.NewValue == e.OldValue || (Execute.InDesignMode && e.NewValue is string)) {
                return;
            }

            var target = e.NewValue;
            var containerKey = e.NewValue as string;
            if (containerKey != null) {
                target = IoC.GetInstance(null, containerKey);
            }
#if XFORMS
            Log.Info("Attaching message handler {0} to {1}.", target, d);
            Message.SetHandler(d, target);

            if (setContext && d is FrameworkElement) {
                Log.Info("Setting DC of {0} to {1}.", d, target);
                ((FrameworkElement)d).BindingContext = target;
            }
#else
            if (setContext && d is FrameworkElement) {
                Log.Info("Setting DC of {0} to {1}.", d, target);
                ((FrameworkElement)d).DataContext = target;
            }

             Log.Info("Attaching message handler {0} to {1}.", target, d);
             Message.SetHandler(d, target);
#endif
            

        }
Example #7
0
 static void OnTargetChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) {
     SetTargetCore(e, d, true);
 }
Example #8
0
 static void OnTargetWithoutContextChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) {
     SetTargetCore(e, d, false);
 }
Example #9
0
        ///<summary>
        ///  Uses the action pipeline to invoke the method.
        ///</summary>
        ///<param name="target"> The object instance to invoke the method on. </param>
        ///<param name="methodName"> The name of the method to invoke. </param>
        ///<param name="view"> The view. </param>
        ///<param name="source"> The source of the invocation. </param>
        ///<param name="eventArgs"> The event args. </param>
        ///<param name="parameters"> The method parameters. </param>
        public static void Invoke(object target, string methodName, DependencyObject view = null, FrameworkElement source = null, object eventArgs = null, object[] parameters = null) {

            var message = new ActionMessage {MethodName = methodName};

            var context = new ActionExecutionContext {
                Target = target,
#if WinRT
                Method = target.GetType().GetRuntimeMethods().Single(m => m.Name == methodName),
#else
                Method = target.GetType().GetMethod(methodName),
#endif
                Message = message,
                View = view,
                Source = source,
                EventArgs = eventArgs
            };

            if (parameters != null) {
                parameters.Apply(x => context.Message.Parameters.Add(x as Parameter ?? new Parameter { Value = x }));
            }

            ActionMessage.InvokeAction(context);

            // This is a bit of hack but keeps message being garbage collected
            Log.Info("Invoking action {0} on {1}.", message.MethodName, target);
        }
Example #10
0
 /// <summary>
 ///   Gets the target for instances of <see cref="ActionMessage" /> .
 /// </summary>
 /// <param name="d"> The element to which the target is attached. </param>
 /// <returns> The target for instances of <see cref="ActionMessage" /> </returns>
 public static object GetTargetWithoutContext(DependencyObject d) {
     return d.GetValue(TargetWithoutContextProperty);
 }
Example #11
0
 /// <summary>
 ///   Gets the target for instances of <see cref="ActionMessage" /> .
 /// </summary>
 /// <param name="d"> The element to which the target is attached. </param>
 /// <returns> The target for instances of <see cref="ActionMessage" /> </returns>
 public static object GetTarget(DependencyObject d)
 {
     return(d.GetValue(TargetProperty));
 }
Example #12
0
 static void OnTargetChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
 {
     SetTargetCore(e, d, true);
 }
Example #13
0
 static void OnTargetWithoutContextChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
 {
     SetTargetCore(e, d, false);
 }
Example #14
0
        static void BindAppBar(DependencyObject view) {
            var page = view as PhoneApplicationPage;
            if (page == null || page.ApplicationBar == null) {
                return;
            }

            var triggers = Interaction.GetTriggers(view);

            foreach(var item in page.ApplicationBar.Buttons) {
                var button = item as IAppBarActionMessage;
                if (button == null || string.IsNullOrEmpty(button.Message)) {
                    continue;
                }

                var parsedTrigger = Parser.Parse(view, button.Message).First();
                var trigger = new AppBarItemTrigger(button);
                var actionMessages = parsedTrigger.Actions.OfType<ActionMessage>().ToList();
                actionMessages.Apply(x => {
                    x.applicationBarSource = button;
                    parsedTrigger.Actions.Remove(x);
                    trigger.Actions.Add(x);
                });
                
                triggers.Add(trigger);
            }

            foreach (var item in page.ApplicationBar.MenuItems) {
                var menuItem = item as IAppBarActionMessage;
                if (menuItem == null || string.IsNullOrEmpty(menuItem.Message)) {
					continue;
                }

                var parsedTrigger = Parser.Parse(view, menuItem.Message).First();
                var trigger = new AppBarItemTrigger(menuItem);
                var actionMessages = parsedTrigger.Actions.OfType<ActionMessage>().ToList();
                actionMessages.Apply(x => {
                    x.applicationBarSource = menuItem;
                    parsedTrigger.Actions.Remove(x);
                    trigger.Actions.Add(x);
                });

                triggers.Add(trigger);
            }
        }
Example #15
0
 /// <summary>
 ///   Gets the target for instances of <see cref="ActionMessage" /> .
 /// </summary>
 /// <param name="d"> The element to which the target is attached. </param>
 /// <returns> The target for instances of <see cref="ActionMessage" /> </returns>
 public static object GetTarget(DependencyObject d) {
     return d.GetValue(TargetProperty);
 }
Example #16
0
 /// <summary>
 ///   Sets the target of the <see cref="ActionMessage" /> .
 /// </summary>
 /// <param name="d"> The element to attach the target to. </param>
 /// <param name="target"> The target for instances of <see cref="ActionMessage" /> . </param>
 /// <remarks>
 ///   The DataContext will not be set.
 /// </remarks>
 public static void SetTargetWithoutContext(DependencyObject d, object target) {
     d.SetValue(TargetWithoutContextProperty, target);
 }
Example #17
0
 /// <summary>
 ///   Sets the target of the <see cref="ActionMessage" /> .
 /// </summary>
 /// <param name="d"> The element to attach the target to. </param>
 /// <param name="target"> The target for instances of <see cref="ActionMessage" /> . </param>
 /// <remarks>
 ///   The DataContext will not be set.
 /// </remarks>
 public static void SetTargetWithoutContext(DependencyObject d, object target)
 {
     d.SetValue(TargetWithoutContextProperty, target);
 }
Example #18
0
        ///<summary>
        ///  Checks if the <see cref="ActionMessage" /> -Target was set.
        ///</summary>
        ///<param name="element"> DependencyObject to check </param>
        ///<returns> True if Target or TargetWithoutContext was set on <paramref name="element" /> </returns>
        public static bool HasTargetSet(DependencyObject element) {
            if (GetTarget(element) != null || GetTargetWithoutContext(element) != null)
                return true;
#if XFORMS
            return false;
#else
            var frameworkElement = element as FrameworkElement;
            if (frameworkElement == null)
                return false;

            return ConventionManager.HasBinding(frameworkElement, TargetProperty)
                   || ConventionManager.HasBinding(frameworkElement, TargetWithoutContextProperty);
#endif
        }
Example #19
0
 /// <summary>
 ///   Gets the target for instances of <see cref="ActionMessage" /> .
 /// </summary>
 /// <param name="d"> The element to which the target is attached. </param>
 /// <returns> The target for instances of <see cref="ActionMessage" /> </returns>
 public static object GetTargetWithoutContext(DependencyObject d)
 {
     return(d.GetValue(TargetWithoutContextProperty));
 }