Click here to Skip to main content
15,894,646 members
Articles / Desktop Programming / WPF

Building an Extensible Application with MEF, WPF, and MVVM

Rate me:
Please Sign up or sign in to vote.
4.88/5 (45 votes)
15 Nov 2009LGPL316 min read 303.2K   7.4K   185  
An article for anyone interested in how to build an extensible application using WPF and the Model-View-ViewModel pattern.
#region MIT License
/*
 * Copyright (c) 2005-2008 Jonathan Mark Porter. http://physics2d.googlepages.com/
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy 
 * of this software and associated documentation files (the "Software"), to deal 
 * in the Software without restriction, including without limitation the rights to 
 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 
 * the Software, and to permit persons to whom the Software is furnished to do so, 
 * subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be 
 * included in all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
 * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
 * PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 
 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 */
#endregion




#if UseDouble
using Scalar = System.Double;
#else
using Scalar = System.Single;
#endif
using System;


namespace AdvanceMath
{
    public delegate void RefOperation<TLeft, TRight, TResult>(ref TLeft left, ref TRight right, out TResult result);
    public delegate TResult ValOperation<TLeft, TRight, TResult>(TLeft left, TRight right);


    public static class OperationHelper
    {
        public static TResult[] ArrayRefOp<TLeft, TRight, TResult>(TLeft[] leftArray, ref TRight right, RefOperation<TLeft, TRight, TResult> operation)
        {
            TResult[] result = new TResult[leftArray.Length];
            ArrayRefOp<TLeft, TRight, TResult>(leftArray, ref right, result, operation);
            return result;
        }
        public static TResult[] ArrayRefOp<TLeft, TRight, TResult>(ref TLeft left, TRight[] rightArray, RefOperation<TLeft, TRight, TResult> operation)
        {
            TResult[] result = new TResult[rightArray.Length];
            ArrayRefOp<TLeft, TRight, TResult>(ref left, rightArray, result, operation);
            return result;
        }
        public static TResult[] ArrayRefOp<TLeft, TRight, TResult>(TLeft[] leftArray, TRight[] rightArray, RefOperation<TLeft, TRight, TResult> operation)
        {
            TResult[] result = new TResult[leftArray.Length];
            ArrayRefOp<TLeft, TRight, TResult>(leftArray, rightArray, result, operation);
            return result;
        }

        public static void ArrayRefOp<TLeft, TRight, TResult>(TLeft[] leftArray, ref TRight right, TResult[] result, RefOperation<TLeft, TRight, TResult> operation)
        {
            if (leftArray == null) { throw new ArgumentNullException("leftArray"); }
            if (result == null) { throw new ArgumentNullException("result"); }
            if (leftArray.Length != result.Length) { throw new ArgumentException("The Arrays Passed must equal in size."); }
            for (int pos = 0; pos < result.Length; ++pos)
            {
                operation(ref leftArray[pos], ref right, out result[pos]);
            }
        }
        public static void ArrayRefOp<TLeft, TRight, TResult>(ref TLeft left, TRight[] rightArray, TResult[] result, RefOperation<TLeft, TRight, TResult> operation)
        {
            if (rightArray == null) { throw new ArgumentNullException("rightArray"); }
            if (result == null) { throw new ArgumentNullException("result"); }
            if (rightArray.Length != result.Length) { throw new ArgumentException("The Arrays Passed must equal in size."); }
            for (int pos = 0; pos < result.Length; ++pos)
            {
                operation(ref left, ref rightArray[pos],out result[pos]);
            }
        }
        public static void ArrayRefOp<TLeft, TRight, TResult>(TLeft[] leftArray, TRight[] rightArray, TResult[] result, RefOperation<TLeft, TRight, TResult> operation)
        {
            if (leftArray == null) { throw new ArgumentNullException("leftArray"); }
            if (rightArray == null) { throw new ArgumentNullException("rightArray"); }
            if (result == null) { throw new ArgumentNullException("result"); }
            if (leftArray.Length != rightArray.Length || rightArray.Length != result.Length) { throw new ArgumentException("The Arrays Passed must equal in size."); }
            for (int pos = 0; pos < result.Length; ++pos)
            {
                operation(ref leftArray[pos], ref rightArray[pos], out result[pos]);
            }
        }

        public static TResult[] ArrayValOp<TLeft, TRight, TResult>(TLeft[] leftArray, TRight right, ValOperation<TLeft, TRight, TResult> operation)
        {
            TResult[] result = new TResult[leftArray.Length];
            ArrayValOp<TLeft, TRight, TResult>(leftArray, right, result, operation);
            return result;
        }
        public static TResult[] ArrayValOp<TLeft, TRight, TResult>(TLeft left, TRight[] rightArray, ValOperation<TLeft, TRight, TResult> operation)
        {
            TResult[] result = new TResult[rightArray.Length];
            ArrayValOp<TLeft, TRight, TResult>(left, rightArray, result, operation);
            return result;
        }
        public static TResult[] ArrayValOp<TLeft, TRight, TResult>(TLeft[] leftArray, TRight[] rightArray, ValOperation<TLeft, TRight, TResult> operation)
        {
            TResult[] result = new TResult[leftArray.Length];
            ArrayValOp<TLeft, TRight, TResult>(leftArray, rightArray, result, operation);
            return result;
        }

        public static void ArrayValOp<TLeft, TRight, TResult>(TLeft[] leftArray, TRight right, TResult[] result, ValOperation<TLeft, TRight, TResult> operation)
        {
            if (leftArray == null) { throw new ArgumentNullException("leftArray"); }
            if (result == null) { throw new ArgumentNullException("result"); }
            if (leftArray.Length != result.Length) { throw new ArgumentException("The Arrays Passed must equal in size."); }
            for (int pos = 0; pos < result.Length; ++pos)
            {
                result[pos] = operation(leftArray[pos], right);
            }
        }
        public static void ArrayValOp<TLeft, TRight, TResult>(TLeft left, TRight[] rightArray, TResult[] result, ValOperation<TLeft, TRight, TResult> operation)
        {
            if (rightArray == null) { throw new ArgumentNullException("rightArray"); }
            if (result == null) { throw new ArgumentNullException("result"); }
            if (rightArray.Length != result.Length) { throw new ArgumentException("The Arrays Passed must equal in size."); }
            for (int pos = 0; pos < result.Length; ++pos)
            {
                result[pos] = operation(left, rightArray[pos]);
            }
        }
        public static void ArrayValOp<TLeft, TRight, TResult>(TLeft[] leftArray, TRight[] rightArray, TResult[] result, ValOperation<TLeft, TRight, TResult> operation)
        {
            if (leftArray == null) { throw new ArgumentNullException("leftArray"); }
            if (rightArray == null) { throw new ArgumentNullException("rightArray"); }
            if (result == null) { throw new ArgumentNullException("result"); }
            if (leftArray.Length != rightArray.Length || rightArray.Length != result.Length) { throw new ArgumentException("The Arrays Passed must equal in size."); }
            for (int pos = 0; pos < result.Length; ++pos)
            {
                result[pos] = operation(leftArray[pos], rightArray[pos]);
            }
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service 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 GNU Lesser General Public License (LGPLv3)


Written By
Engineer
Canada Canada
By day I'm a Professional Engineer, doing .NET, VB6, SQL Server, and Automation (Ladder Logic, etc.) programming.

On weekends I write and maintain an open source extensible application framework called SoapBox Core.

In the evenings I provide front line technical support for moms4mom.com and I help out with administrative tasks (like formatting stuff). I also pitch in as a moderator from time to time.

You can follow me on twitter.

Comments and Discussions