GradientBrush.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / GradientBrush.cs / 1305600 / GradientBrush.cs

                            //---------------------------------------------------------------------------- 
//
// Copyright (C) Microsoft Corporation.  All rights reserved.
//
// File: GradientBrush.cs 
//
// Description: This file contains the implementation of GradientBrush. 
//              The GradientBrush is an abstract class of Brushes which describes 
//              a way to fill a region by a gradient.  Derived classes describe different
//              ways of interpreting gradient stops. 
//
// History:
//  04/30/2003 : [....] - Created it.
// 
//---------------------------------------------------------------------------
 
using System; 
using System.Diagnostics;
using System.ComponentModel; 
using System.Windows;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation; 
using MS.Internal;
using System.Runtime.InteropServices; 
using System.Windows.Media.Composition; 

namespace System.Windows.Media 
{
    /// 
    /// GradientBrush
    /// The GradientBrush is an abstract class of Brushes which describes 
    /// a way to fill a region by a gradient.  Derived classes describe different
    /// ways of interpreting gradient stops. 
    ///  
    [ContentProperty("GradientStops")]
    public abstract partial class GradientBrush : Brush 
    {
        #region Constructors

        ///  
        /// Protected constructor for GradientBrush
        ///  
        protected GradientBrush() 
        {
        } 

        /// 
        /// Protected constructor for GradientBrush
        /// Sets all the values of the GradientStopCollection, all other values are left as default. 
        /// 
        protected GradientBrush(GradientStopCollection gradientStopCollection) 
        { 
            GradientStops = gradientStopCollection;
        } 

        #endregion Constructors
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK