Click here to Skip to main content
Click here to Skip to main content

WPF Extensibility Hacks or WEX - Includes EventTrigger, ReactiveTrigger, InvokeMethodAction, InvokeCommandAction etc.

By , 14 Jan 2010
 
Wex.zip
Assemblies
Microsoft.Expression.Interactions.dll
System.ComponentModel.Composition.dll
System.CoreEx.dll
System.Interactive.dll
System.Reactive.dll
System.Windows.Interactivity.dll
WexEventTrigger.Demo
bin
Debug
WexEventTrigger.Demo.vshost.exe
WexEventTrigger.Demo.vshost.exe.manifest
Commands
Extensions
Properties
Settings.settings
Views
Demos
WexEventTrigger
bin
Debug
WexEventTrigger.dll
WexEventTrigger.vshost.exe
WexEventTrigger.vshost.exe.manifest
ClassDiagram1.cd
Composition
Lib
Properties
Settings.settings
Reactive
Wex.csproj.user
using System;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Wex.Lib.Composition;

namespace Wex.Lib.Interactions
{
    public class ReactiveTrigger : ObserverTrigger<EventResult>
    {

        public string ImportName
        {
            get { return (string)GetValue(ImportNameProperty); }
            set { SetValue(ImportNameProperty, value); }
        }

        // Using a DependencyProperty as the backing store for ImportName.  This enables animation, styling, binding, etc...
        public static readonly DependencyProperty ImportNameProperty =
            DependencyProperty.Register("ImportName", typeof(string), typeof(ReactiveTrigger), new PropertyMetadata(string.Empty));


        /// <summary>
        /// Initialize this reactive trigger
        /// </summary>
        protected override void Initialize()
        {
            this.Cleanup();
            var func = WexPartComposer.Resolve(this.ImportName);
            if (func == null) throw new InvalidOperationException("The requested reactive trigger name is not found in the exported collection");
            this.Observable = func(this.Source);
        }

        /// <summary>
        /// On next action for this observer trigger
        /// </summary>
        /// <param name="param"></param>
        protected override void OnNext(object param)
        {
            this.Dispatcher.BeginInvoke(new Action<EventResult>(InvokeConditional), new object[] { param as EventResult });
        }

    }
}

By viewing downloads associated with this article you agree to the Terms of use and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author


Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130617.1 | Last Updated 14 Jan 2010
Article Copyright 2010 by Anoop Madhusudanan
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid