TileBrush.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media / Generated / TileBrush.cs / 1 / TileBrush.cs

                            //---------------------------------------------------------------------------- 
//
// 
//    Copyright (C) Microsoft Corporation.  All rights reserved.
//  
//
// This file was generated, please do not edit it directly. 
// 
// Please see [....]/default.aspx/Microsoft.Projects.Avalon/MilCodeGen.html for more information.
// 
//---------------------------------------------------------------------------

using MS.Internal;
using MS.Internal.KnownBoxes; 
using MS.Internal.Collections;
using MS.Internal.PresentationCore; 
using MS.Utility; 
using System;
using System.Collections; 
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Globalization; 
using System.Reflection;
using System.Runtime.InteropServices; 
using System.ComponentModel.Design.Serialization; 
using System.Text;
using System.Windows; 
using System.Windows.Media;
using System.Windows.Media.Effects;
using System.Windows.Media.Media3D;
using System.Windows.Media.Animation; 
using System.Windows.Media.Composition;
using System.Windows.Media.Imaging; 
using System.Windows.Markup; 
using System.Windows.Media.Converters;
using System.Security; 
using System.Security.Permissions;
using SR=MS.Internal.PresentationCore.SR;
using SRID=MS.Internal.PresentationCore.SRID;
// These types are aliased to match the unamanaged names used in interop 
using BOOL = System.UInt32;
using WORD = System.UInt16; 
using Float = System.Single; 

namespace System.Windows.Media 
{


 
    abstract partial class TileBrush : Brush
    { 
        #region Constructors 

        //----------------------------------------------------- 
        //
        //  Constructors
        //
        //----------------------------------------------------- 

        static TileBrush() 
        { 
            // We check our static default fields which are of type Freezable
            // to make sure that they are not mutable, otherwise we will throw 
            // if these get touched by more than one thread in the lifetime
            // of your app.  (Windows OS Bug #947272)
            //
            RenderOptions.CachingHintProperty.OverrideMetadata( 
                typeof(TileBrush),
                new UIPropertyMetadata(CachingHint.Unspecified, 
                                       new PropertyChangedCallback(CachingHintPropertyChanged))); 

            RenderOptions.CacheInvalidationThresholdMinimumProperty.OverrideMetadata( 
                typeof(TileBrush),
                new UIPropertyMetadata(0.707,
                                       new PropertyChangedCallback(CacheInvalidationThresholdMinimumPropertyChanged)));
 
            RenderOptions.CacheInvalidationThresholdMaximumProperty.OverrideMetadata(
                typeof(TileBrush), 
                new UIPropertyMetadata(1.414, 
                                       new PropertyChangedCallback(CacheInvalidationThresholdMaximumPropertyChanged)));
        } 



        #endregion Constructors 

        //------------------------------------------------------ 
        // 
        //  Public Methods
        // 
        //-----------------------------------------------------

        #region Public Methods
 
        /// 
        ///     Shadows inherited Clone() with a strongly typed 
        ///     version for convenience. 
        /// 
        public new TileBrush Clone() 
        {
            return (TileBrush)base.Clone();
        }
 
        /// 
        ///     Shadows inherited CloneCurrentValue() with a strongly typed 
        ///     version for convenience. 
        /// 
        public new TileBrush CloneCurrentValue() 
        {
            return (TileBrush)base.CloneCurrentValue();
        }
 

 
 
        #endregion Public Methods
 
        //------------------------------------------------------
        //
        //  Public Properties
        // 
        //------------------------------------------------------
 
        private static void ViewportUnitsPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) 
        {
            TileBrush target = ((TileBrush) d); 


            target.PropertyChanged(ViewportUnitsProperty);
        } 
        private static void ViewboxUnitsPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        { 
            TileBrush target = ((TileBrush) d); 

 
            target.PropertyChanged(ViewboxUnitsProperty);
        }
        private static void ViewportPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        { 
            TileBrush target = ((TileBrush) d);
 
 
            target.PropertyChanged(ViewportProperty);
        } 
        private static void ViewboxPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            TileBrush target = ((TileBrush) d);
 

            target.PropertyChanged(ViewboxProperty); 
        } 
        private static void StretchPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        { 
            TileBrush target = ((TileBrush) d);


            target.PropertyChanged(StretchProperty); 
        }
        private static void TileModePropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) 
        { 
            TileBrush target = ((TileBrush) d);
 

            target.PropertyChanged(TileModeProperty);
        }
        private static void AlignmentXPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) 
        {
            TileBrush target = ((TileBrush) d); 
 

            target.PropertyChanged(AlignmentXProperty); 
        }
        private static void AlignmentYPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            TileBrush target = ((TileBrush) d); 

 
            target.PropertyChanged(AlignmentYProperty); 
        }
        private static void CachingHintPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) 
        {
            TileBrush target = ((TileBrush) d);

 
            target.PropertyChanged(RenderOptions.CachingHintProperty);
        } 
        private static void CacheInvalidationThresholdMinimumPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) 
        {
            TileBrush target = ((TileBrush) d); 


            target.PropertyChanged(RenderOptions.CacheInvalidationThresholdMinimumProperty);
        } 
        private static void CacheInvalidationThresholdMaximumPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        { 
            TileBrush target = ((TileBrush) d); 

 
            target.PropertyChanged(RenderOptions.CacheInvalidationThresholdMaximumProperty);
        }

 
        #region Public Properties
 
        ///  
        ///     ViewportUnits - BrushMappingMode.  Default value is BrushMappingMode.RelativeToBoundingBox.
        ///  
        public BrushMappingMode ViewportUnits
        {
            get
            { 
                return (BrushMappingMode) GetValue(ViewportUnitsProperty);
            } 
            set 
            {
                SetValueInternal(ViewportUnitsProperty, value); 
            }
        }

        ///  
        ///     ViewboxUnits - BrushMappingMode.  Default value is BrushMappingMode.RelativeToBoundingBox.
        ///  
        public BrushMappingMode ViewboxUnits 
        {
            get 
            {
                return (BrushMappingMode) GetValue(ViewboxUnitsProperty);
            }
            set 
            {
                SetValueInternal(ViewboxUnitsProperty, value); 
            } 
        }
 
        /// 
        ///     Viewport - Rect.  Default value is new Rect(0,0,1,1).
        /// 
        public Rect Viewport 
        {
            get 
            { 
                return (Rect) GetValue(ViewportProperty);
            } 
            set
            {
                SetValueInternal(ViewportProperty, value);
            } 
        }
 
        ///  
        ///     Viewbox - Rect.  Default value is new Rect(0,0,1,1).
        ///  
        public Rect Viewbox
        {
            get
            { 
                return (Rect) GetValue(ViewboxProperty);
            } 
            set 
            {
                SetValueInternal(ViewboxProperty, value); 
            }
        }

        ///  
        ///     Stretch - Stretch.  Default value is Stretch.Fill.
        ///  
        public Stretch Stretch 
        {
            get 
            {
                return (Stretch) GetValue(StretchProperty);
            }
            set 
            {
                SetValueInternal(StretchProperty, value); 
            } 
        }
 
        /// 
        ///     TileMode - TileMode.  Default value is TileMode.None.
        /// 
        public TileMode TileMode 
        {
            get 
            { 
                return (TileMode) GetValue(TileModeProperty);
            } 
            set
            {
                SetValueInternal(TileModeProperty, value);
            } 
        }
 
        ///  
        ///     AlignmentX - AlignmentX.  Default value is AlignmentX.Center.
        ///  
        public AlignmentX AlignmentX
        {
            get
            { 
                return (AlignmentX) GetValue(AlignmentXProperty);
            } 
            set 
            {
                SetValueInternal(AlignmentXProperty, value); 
            }
        }

        ///  
        ///     AlignmentY - AlignmentY.  Default value is AlignmentY.Center.
        ///  
        public AlignmentY AlignmentY 
        {
            get 
            {
                return (AlignmentY) GetValue(AlignmentYProperty);
            }
            set 
            {
                SetValueInternal(AlignmentYProperty, value); 
            } 
        }
 
        #endregion Public Properties

        //-----------------------------------------------------
        // 
        //  Protected Methods
        // 
        //------------------------------------------------------ 

        #region Protected Methods 



 

        #endregion ProtectedMethods 
 
        //-----------------------------------------------------
        // 
        //  Internal Methods
        //
        //-----------------------------------------------------
 
        #region Internal Methods
 
 

 



 

        #endregion Internal Methods 
 
        //-----------------------------------------------------
        // 
        //  Internal Properties
        //
        //------------------------------------------------------
 
        #region Internal Properties
 
 

 

        #endregion Internal Properties

        //----------------------------------------------------- 
        //
        //  Dependency Properties 
        // 
        //------------------------------------------------------
 
        #region Dependency Properties

        /// 
        ///     The DependencyProperty for the TileBrush.ViewportUnits property. 
        /// 
        public static readonly DependencyProperty ViewportUnitsProperty 
            = RegisterProperty("ViewportUnits", 
                               typeof(BrushMappingMode),
                               typeof(TileBrush), 
                               BrushMappingMode.RelativeToBoundingBox,
                               new PropertyChangedCallback(ViewportUnitsPropertyChanged),
                               new ValidateValueCallback(System.Windows.Media.ValidateEnums.IsBrushMappingModeValid),
                               /* isIndependentlyAnimated  = */ false, 
                               /* coerceValueCallback */ null);
        ///  
        ///     The DependencyProperty for the TileBrush.ViewboxUnits property. 
        /// 
        public static readonly DependencyProperty ViewboxUnitsProperty 
            = RegisterProperty("ViewboxUnits",
                               typeof(BrushMappingMode),
                               typeof(TileBrush),
                               BrushMappingMode.RelativeToBoundingBox, 
                               new PropertyChangedCallback(ViewboxUnitsPropertyChanged),
                               new ValidateValueCallback(System.Windows.Media.ValidateEnums.IsBrushMappingModeValid), 
                               /* isIndependentlyAnimated  = */ false, 
                               /* coerceValueCallback */ null);
        ///  
        ///     The DependencyProperty for the TileBrush.Viewport property.
        /// 
        public static readonly DependencyProperty ViewportProperty
            = RegisterProperty("Viewport", 
                               typeof(Rect),
                               typeof(TileBrush), 
                               new Rect(0,0,1,1), 
                               new PropertyChangedCallback(ViewportPropertyChanged),
                               null, 
                               /* isIndependentlyAnimated  = */ true,
                               /* coerceValueCallback */ null);
        /// 
        ///     The DependencyProperty for the TileBrush.Viewbox property. 
        /// 
        public static readonly DependencyProperty ViewboxProperty 
            = RegisterProperty("Viewbox", 
                               typeof(Rect),
                               typeof(TileBrush), 
                               new Rect(0,0,1,1),
                               new PropertyChangedCallback(ViewboxPropertyChanged),
                               null,
                               /* isIndependentlyAnimated  = */ true, 
                               /* coerceValueCallback */ null);
        ///  
        ///     The DependencyProperty for the TileBrush.Stretch property. 
        /// 
        public static readonly DependencyProperty StretchProperty 
            = RegisterProperty("Stretch",
                               typeof(Stretch),
                               typeof(TileBrush),
                               Stretch.Fill, 
                               new PropertyChangedCallback(StretchPropertyChanged),
                               new ValidateValueCallback(System.Windows.Media.ValidateEnums.IsStretchValid), 
                               /* isIndependentlyAnimated  = */ false, 
                               /* coerceValueCallback */ null);
        ///  
        ///     The DependencyProperty for the TileBrush.TileMode property.
        /// 
        public static readonly DependencyProperty TileModeProperty
            = RegisterProperty("TileMode", 
                               typeof(TileMode),
                               typeof(TileBrush), 
                               TileMode.None, 
                               new PropertyChangedCallback(TileModePropertyChanged),
                               new ValidateValueCallback(System.Windows.Media.ValidateEnums.IsTileModeValid), 
                               /* isIndependentlyAnimated  = */ false,
                               /* coerceValueCallback */ null);
        /// 
        ///     The DependencyProperty for the TileBrush.AlignmentX property. 
        /// 
        public static readonly DependencyProperty AlignmentXProperty 
            = RegisterProperty("AlignmentX", 
                               typeof(AlignmentX),
                               typeof(TileBrush), 
                               AlignmentX.Center,
                               new PropertyChangedCallback(AlignmentXPropertyChanged),
                               new ValidateValueCallback(System.Windows.Media.ValidateEnums.IsAlignmentXValid),
                               /* isIndependentlyAnimated  = */ false, 
                               /* coerceValueCallback */ null);
        ///  
        ///     The DependencyProperty for the TileBrush.AlignmentY property. 
        /// 
        public static readonly DependencyProperty AlignmentYProperty 
            = RegisterProperty("AlignmentY",
                               typeof(AlignmentY),
                               typeof(TileBrush),
                               AlignmentY.Center, 
                               new PropertyChangedCallback(AlignmentYPropertyChanged),
                               new ValidateValueCallback(System.Windows.Media.ValidateEnums.IsAlignmentYValid), 
                               /* isIndependentlyAnimated  = */ false, 
                               /* coerceValueCallback */ null);
 
        #endregion Dependency Properties

        //------------------------------------------------------
        // 
        //  Internal Fields
        // 
        //----------------------------------------------------- 

        #region Internal Fields 



 

        internal const BrushMappingMode c_ViewportUnits = BrushMappingMode.RelativeToBoundingBox; 
        internal const BrushMappingMode c_ViewboxUnits = BrushMappingMode.RelativeToBoundingBox; 
        internal static Rect s_Viewport = new Rect(0,0,1,1);
        internal static Rect s_Viewbox = new Rect(0,0,1,1); 
        internal const Stretch c_Stretch = Stretch.Fill;
        internal const TileMode c_TileMode = TileMode.None;
        internal const AlignmentX c_AlignmentX = AlignmentX.Center;
        internal const AlignmentY c_AlignmentY = AlignmentY.Center; 
        internal const CachingHint c_CachingHint = CachingHint.Unspecified;
        internal const double c_CacheInvalidationThresholdMinimum = 0.707; 
        internal const double c_CacheInvalidationThresholdMaximum = 1.414; 

        #endregion Internal Fields 


    }
} 

// 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