Click here to Skip to main content
15,884,298 members
Articles / Desktop Programming / WPF

Stacked Geometry Brush Factory

Rate me:
Please Sign up or sign in to vote.
4.95/5 (68 votes)
16 Jul 2010CPOL13 min read 79.4K   2.6K   103  
A geometric visual brush producer with plug-in architecture and customized XAML.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Media;
using System.Windows;
using System.Windows.Markup;
namespace StackedGeometry
{
    [ContentProperty("StackedGeometry")][CustomXaml]
  public   class StackedGeometryBrushFactory:FrameworkElement 
    {

        VisualBrush mVB;

      public StackedGeometryBrushFactory()
      {
            mVB = new VisualBrush();
            mVB.Stretch = Stretch.Uniform;
      }

      public VisualBrush Brush
      {
              get { return mVB; }
       }

       private StackedGeometry mStackedGeometry;

      public StackedGeometry StackedGeometry
      {
           get{return mStackedGeometry;}
           set{mStackedGeometry=value;
           mVB.Visual = mStackedGeometry;}

      }

        private static void OnStackedGeometrySet(DependencyObject d, DependencyPropertyChangedEventArgs e)
     {

          StackedGeometryBrushFactory sgbf =   ( StackedGeometryBrushFactory)d ;
          sgbf.Brush.Visual  = (StackedGeometry)e.NewValue;
        }

    }
}

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 Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
Written software for what seems like forever. I'm currenly infatuated with WPF. Hopefully my affections are returned.

Comments and Discussions