Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Core / CSharp / System / Windows / Media / Imaging / Generated / BitmapImage.cs / 1 / BitmapImage.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // This file was generated, please do not edit it directly. // // Please see http://wiki/default.aspx/Microsoft.Projects.Avalon/MilCodeGen.html for more information. // //--------------------------------------------------------------------------- using MS.Internal; using MS.Internal.PresentationCore; using System; using System.IO; using System.Collections; using System.ComponentModel; using System.Net.Cache; using System.Runtime.InteropServices; using System.Windows.Threading; using System.Windows; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Media.Composition; using System.Windows.Media.Imaging; using System.Windows.Media.Media3D; using System.Diagnostics; // 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.Imaging { sealed partial class BitmapImage : BitmapSource { //----------------------------------------------------- // // Public Methods // //----------------------------------------------------- #region Public Methods ////// Shadows inherited Clone() with a strongly typed /// version for convenience. /// public new BitmapImage Clone() { return (BitmapImage)base.Clone(); } ////// Shadows inherited CloneCurrentValue() with a strongly typed /// version for convenience. /// public new BitmapImage CloneCurrentValue() { return (BitmapImage)base.CloneCurrentValue(); } #endregion Public Methods //------------------------------------------------------ // // Public Properties // //----------------------------------------------------- private static void UriCachePolicyPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { BitmapImage target = ((BitmapImage) d); target.UriCachePolicyPropertyChangedHook(e); target.PropertyChanged(UriCachePolicyProperty); } private static void UriSourcePropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { BitmapImage target = ((BitmapImage) d); target.UriSourcePropertyChangedHook(e); target.PropertyChanged(UriSourceProperty); } private static void StreamSourcePropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { BitmapImage target = ((BitmapImage) d); target.StreamSourcePropertyChangedHook(e); target.PropertyChanged(StreamSourceProperty); } private static void DecodePixelWidthPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { BitmapImage target = ((BitmapImage) d); target.DecodePixelWidthPropertyChangedHook(e); target.PropertyChanged(DecodePixelWidthProperty); } private static void DecodePixelHeightPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { BitmapImage target = ((BitmapImage) d); target.DecodePixelHeightPropertyChangedHook(e); target.PropertyChanged(DecodePixelHeightProperty); } private static void RotationPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { BitmapImage target = ((BitmapImage) d); target.RotationPropertyChangedHook(e); target.PropertyChanged(RotationProperty); } private static void SourceRectPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { BitmapImage target = ((BitmapImage) d); target.SourceRectPropertyChangedHook(e); target.PropertyChanged(SourceRectProperty); } private static void CreateOptionsPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { BitmapImage target = ((BitmapImage) d); target.CreateOptionsPropertyChangedHook(e); target.PropertyChanged(CreateOptionsProperty); } private static void CacheOptionPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { BitmapImage target = ((BitmapImage) d); target.CacheOptionPropertyChangedHook(e); target.PropertyChanged(CacheOptionProperty); } #region Public Properties ////// UriCachePolicy - RequestCachePolicy. Default value is null. /// [TypeConverter(typeof(System.Windows.Media.RequestCachePolicyConverter))] public RequestCachePolicy UriCachePolicy { get { return (RequestCachePolicy) GetValue(UriCachePolicyProperty); } set { SetValueInternal(UriCachePolicyProperty, value); } } ////// UriSource - Uri. Default value is null. /// public Uri UriSource { get { return (Uri) GetValue(UriSourceProperty); } set { SetValueInternal(UriSourceProperty, value); } } ////// StreamSource - Stream. Default value is null. /// [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] public Stream StreamSource { get { return (Stream) GetValue(StreamSourceProperty); } set { SetValueInternal(StreamSourceProperty, value); } } ////// DecodePixelWidth - int. Default value is 0. /// public int DecodePixelWidth { get { return (int) GetValue(DecodePixelWidthProperty); } set { SetValueInternal(DecodePixelWidthProperty, value); } } ////// DecodePixelHeight - int. Default value is 0. /// public int DecodePixelHeight { get { return (int) GetValue(DecodePixelHeightProperty); } set { SetValueInternal(DecodePixelHeightProperty, value); } } ////// Rotation - Rotation. Default value is Rotation.Rotate0. /// public Rotation Rotation { get { return (Rotation) GetValue(RotationProperty); } set { SetValueInternal(RotationProperty, value); } } ////// SourceRect - Int32Rect. Default value is Int32Rect.Empty. /// public Int32Rect SourceRect { get { return (Int32Rect) GetValue(SourceRectProperty); } set { SetValueInternal(SourceRectProperty, value); } } ////// CreateOptions - BitmapCreateOptions. Default value is BitmapCreateOptions.None. /// public BitmapCreateOptions CreateOptions { get { return (BitmapCreateOptions) GetValue(CreateOptionsProperty); } set { SetValueInternal(CreateOptionsProperty, value); } } ////// CacheOption - BitmapCacheOption. Default value is BitmapCacheOption.Default. /// public BitmapCacheOption CacheOption { get { return (BitmapCacheOption) GetValue(CacheOptionProperty); } set { SetValueInternal(CacheOptionProperty, value); } } #endregion Public Properties //------------------------------------------------------ // // Protected Methods // //------------------------------------------------------ #region Protected Methods ////// Implementation of ///Freezable.CreateInstanceCore . ///The new Freezable. protected override Freezable CreateInstanceCore() { return new BitmapImage(); } ////// Implementation of Freezable.CloneCore() /// protected override void CloneCore(Freezable source) { BitmapImage sourceBitmapImage = (BitmapImage) source; // Set any state required before actual clone happens ClonePrequel(sourceBitmapImage); base.CloneCore(source); // Set state once clone has finished ClonePostscript(sourceBitmapImage); } ////// Implementation of Freezable.CloneCurrentValueCore() /// protected override void CloneCurrentValueCore(Freezable source) { BitmapImage sourceBitmapImage = (BitmapImage) source; // Set any state required before actual clone happens ClonePrequel(sourceBitmapImage); base.CloneCurrentValueCore(source); // Set state once clone has finished ClonePostscript(sourceBitmapImage); } ////// Implementation of Freezable.GetAsFrozenCore() /// protected override void GetAsFrozenCore(Freezable source) { BitmapImage sourceBitmapImage = (BitmapImage) source; // Set any state required before actual clone happens ClonePrequel(sourceBitmapImage); base.GetAsFrozenCore(source); // Set state once clone has finished ClonePostscript(sourceBitmapImage); } ////// Implementation of Freezable.GetCurrentValueAsFrozenCore() /// protected override void GetCurrentValueAsFrozenCore(Freezable source) { BitmapImage sourceBitmapImage = (BitmapImage) source; // Set any state required before actual clone happens ClonePrequel(sourceBitmapImage); base.GetCurrentValueAsFrozenCore(source); // Set state once clone has finished ClonePostscript(sourceBitmapImage); } #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 BitmapImage.UriCachePolicy property. /// public static readonly DependencyProperty UriCachePolicyProperty; ////// The DependencyProperty for the BitmapImage.UriSource property. /// public static readonly DependencyProperty UriSourceProperty; ////// The DependencyProperty for the BitmapImage.StreamSource property. /// public static readonly DependencyProperty StreamSourceProperty; ////// The DependencyProperty for the BitmapImage.DecodePixelWidth property. /// public static readonly DependencyProperty DecodePixelWidthProperty; ////// The DependencyProperty for the BitmapImage.DecodePixelHeight property. /// public static readonly DependencyProperty DecodePixelHeightProperty; ////// The DependencyProperty for the BitmapImage.Rotation property. /// public static readonly DependencyProperty RotationProperty; ////// The DependencyProperty for the BitmapImage.SourceRect property. /// public static readonly DependencyProperty SourceRectProperty; ////// The DependencyProperty for the BitmapImage.CreateOptions property. /// public static readonly DependencyProperty CreateOptionsProperty; ////// The DependencyProperty for the BitmapImage.CacheOption property. /// public static readonly DependencyProperty CacheOptionProperty; #endregion Dependency Properties //----------------------------------------------------- // // Internal Fields // //------------------------------------------------------ #region Internal Fields internal static RequestCachePolicy s_UriCachePolicy = null; internal static Uri s_UriSource = null; internal static Stream s_StreamSource = null; internal const int c_DecodePixelWidth = 0; internal const int c_DecodePixelHeight = 0; internal const Rotation c_Rotation = Rotation.Rotate0; internal static Int32Rect s_SourceRect = Int32Rect.Empty; internal static BitmapCreateOptions s_CreateOptions = BitmapCreateOptions.None; internal static BitmapCacheOption s_CacheOption = BitmapCacheOption.Default; #endregion Internal Fields #region Constructors //------------------------------------------------------ // // Constructors // //----------------------------------------------------- static BitmapImage() { // 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) // // Initializations Type typeofThis = typeof(BitmapImage); UriCachePolicyProperty = RegisterProperty("UriCachePolicy", typeof(RequestCachePolicy), typeofThis, null, new PropertyChangedCallback(UriCachePolicyPropertyChanged), null, /* isIndependentlyAnimated = */ false, /* coerceValueCallback */ new CoerceValueCallback(CoerceUriCachePolicy)); UriSourceProperty = RegisterProperty("UriSource", typeof(Uri), typeofThis, null, new PropertyChangedCallback(UriSourcePropertyChanged), null, /* isIndependentlyAnimated = */ false, /* coerceValueCallback */ new CoerceValueCallback(CoerceUriSource)); StreamSourceProperty = RegisterProperty("StreamSource", typeof(Stream), typeofThis, null, new PropertyChangedCallback(StreamSourcePropertyChanged), null, /* isIndependentlyAnimated = */ false, /* coerceValueCallback */ new CoerceValueCallback(CoerceStreamSource)); DecodePixelWidthProperty = RegisterProperty("DecodePixelWidth", typeof(int), typeofThis, 0, new PropertyChangedCallback(DecodePixelWidthPropertyChanged), null, /* isIndependentlyAnimated = */ false, /* coerceValueCallback */ new CoerceValueCallback(CoerceDecodePixelWidth)); DecodePixelHeightProperty = RegisterProperty("DecodePixelHeight", typeof(int), typeofThis, 0, new PropertyChangedCallback(DecodePixelHeightPropertyChanged), null, /* isIndependentlyAnimated = */ false, /* coerceValueCallback */ new CoerceValueCallback(CoerceDecodePixelHeight)); RotationProperty = RegisterProperty("Rotation", typeof(Rotation), typeofThis, Rotation.Rotate0, new PropertyChangedCallback(RotationPropertyChanged), new ValidateValueCallback(System.Windows.Media.Imaging.ValidateEnums.IsRotationValid), /* isIndependentlyAnimated = */ false, /* coerceValueCallback */ new CoerceValueCallback(CoerceRotation)); SourceRectProperty = RegisterProperty("SourceRect", typeof(Int32Rect), typeofThis, Int32Rect.Empty, new PropertyChangedCallback(SourceRectPropertyChanged), null, /* isIndependentlyAnimated = */ false, /* coerceValueCallback */ new CoerceValueCallback(CoerceSourceRect)); CreateOptionsProperty = RegisterProperty("CreateOptions", typeof(BitmapCreateOptions), typeofThis, BitmapCreateOptions.None, new PropertyChangedCallback(CreateOptionsPropertyChanged), null, /* isIndependentlyAnimated = */ false, /* coerceValueCallback */ new CoerceValueCallback(CoerceCreateOptions)); CacheOptionProperty = RegisterProperty("CacheOption", typeof(BitmapCacheOption), typeofThis, BitmapCacheOption.Default, new PropertyChangedCallback(CacheOptionPropertyChanged), null, /* isIndependentlyAnimated = */ false, /* coerceValueCallback */ new CoerceValueCallback(CoerceCacheOption)); } #endregion Constructors } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // This file was generated, please do not edit it directly. // // Please see http://wiki/default.aspx/Microsoft.Projects.Avalon/MilCodeGen.html for more information. // //--------------------------------------------------------------------------- using MS.Internal; using MS.Internal.PresentationCore; using System; using System.IO; using System.Collections; using System.ComponentModel; using System.Net.Cache; using System.Runtime.InteropServices; using System.Windows.Threading; using System.Windows; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Media.Composition; using System.Windows.Media.Imaging; using System.Windows.Media.Media3D; using System.Diagnostics; // 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.Imaging { sealed partial class BitmapImage : BitmapSource { //----------------------------------------------------- // // Public Methods // //----------------------------------------------------- #region Public Methods ////// Shadows inherited Clone() with a strongly typed /// version for convenience. /// public new BitmapImage Clone() { return (BitmapImage)base.Clone(); } ////// Shadows inherited CloneCurrentValue() with a strongly typed /// version for convenience. /// public new BitmapImage CloneCurrentValue() { return (BitmapImage)base.CloneCurrentValue(); } #endregion Public Methods //------------------------------------------------------ // // Public Properties // //----------------------------------------------------- private static void UriCachePolicyPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { BitmapImage target = ((BitmapImage) d); target.UriCachePolicyPropertyChangedHook(e); target.PropertyChanged(UriCachePolicyProperty); } private static void UriSourcePropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { BitmapImage target = ((BitmapImage) d); target.UriSourcePropertyChangedHook(e); target.PropertyChanged(UriSourceProperty); } private static void StreamSourcePropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { BitmapImage target = ((BitmapImage) d); target.StreamSourcePropertyChangedHook(e); target.PropertyChanged(StreamSourceProperty); } private static void DecodePixelWidthPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { BitmapImage target = ((BitmapImage) d); target.DecodePixelWidthPropertyChangedHook(e); target.PropertyChanged(DecodePixelWidthProperty); } private static void DecodePixelHeightPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { BitmapImage target = ((BitmapImage) d); target.DecodePixelHeightPropertyChangedHook(e); target.PropertyChanged(DecodePixelHeightProperty); } private static void RotationPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { BitmapImage target = ((BitmapImage) d); target.RotationPropertyChangedHook(e); target.PropertyChanged(RotationProperty); } private static void SourceRectPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { BitmapImage target = ((BitmapImage) d); target.SourceRectPropertyChangedHook(e); target.PropertyChanged(SourceRectProperty); } private static void CreateOptionsPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { BitmapImage target = ((BitmapImage) d); target.CreateOptionsPropertyChangedHook(e); target.PropertyChanged(CreateOptionsProperty); } private static void CacheOptionPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { BitmapImage target = ((BitmapImage) d); target.CacheOptionPropertyChangedHook(e); target.PropertyChanged(CacheOptionProperty); } #region Public Properties ////// UriCachePolicy - RequestCachePolicy. Default value is null. /// [TypeConverter(typeof(System.Windows.Media.RequestCachePolicyConverter))] public RequestCachePolicy UriCachePolicy { get { return (RequestCachePolicy) GetValue(UriCachePolicyProperty); } set { SetValueInternal(UriCachePolicyProperty, value); } } ////// UriSource - Uri. Default value is null. /// public Uri UriSource { get { return (Uri) GetValue(UriSourceProperty); } set { SetValueInternal(UriSourceProperty, value); } } ////// StreamSource - Stream. Default value is null. /// [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] public Stream StreamSource { get { return (Stream) GetValue(StreamSourceProperty); } set { SetValueInternal(StreamSourceProperty, value); } } ////// DecodePixelWidth - int. Default value is 0. /// public int DecodePixelWidth { get { return (int) GetValue(DecodePixelWidthProperty); } set { SetValueInternal(DecodePixelWidthProperty, value); } } ////// DecodePixelHeight - int. Default value is 0. /// public int DecodePixelHeight { get { return (int) GetValue(DecodePixelHeightProperty); } set { SetValueInternal(DecodePixelHeightProperty, value); } } ////// Rotation - Rotation. Default value is Rotation.Rotate0. /// public Rotation Rotation { get { return (Rotation) GetValue(RotationProperty); } set { SetValueInternal(RotationProperty, value); } } ////// SourceRect - Int32Rect. Default value is Int32Rect.Empty. /// public Int32Rect SourceRect { get { return (Int32Rect) GetValue(SourceRectProperty); } set { SetValueInternal(SourceRectProperty, value); } } ////// CreateOptions - BitmapCreateOptions. Default value is BitmapCreateOptions.None. /// public BitmapCreateOptions CreateOptions { get { return (BitmapCreateOptions) GetValue(CreateOptionsProperty); } set { SetValueInternal(CreateOptionsProperty, value); } } ////// CacheOption - BitmapCacheOption. Default value is BitmapCacheOption.Default. /// public BitmapCacheOption CacheOption { get { return (BitmapCacheOption) GetValue(CacheOptionProperty); } set { SetValueInternal(CacheOptionProperty, value); } } #endregion Public Properties //------------------------------------------------------ // // Protected Methods // //------------------------------------------------------ #region Protected Methods ////// Implementation of ///Freezable.CreateInstanceCore . ///The new Freezable. protected override Freezable CreateInstanceCore() { return new BitmapImage(); } ////// Implementation of Freezable.CloneCore() /// protected override void CloneCore(Freezable source) { BitmapImage sourceBitmapImage = (BitmapImage) source; // Set any state required before actual clone happens ClonePrequel(sourceBitmapImage); base.CloneCore(source); // Set state once clone has finished ClonePostscript(sourceBitmapImage); } ////// Implementation of Freezable.CloneCurrentValueCore() /// protected override void CloneCurrentValueCore(Freezable source) { BitmapImage sourceBitmapImage = (BitmapImage) source; // Set any state required before actual clone happens ClonePrequel(sourceBitmapImage); base.CloneCurrentValueCore(source); // Set state once clone has finished ClonePostscript(sourceBitmapImage); } ////// Implementation of Freezable.GetAsFrozenCore() /// protected override void GetAsFrozenCore(Freezable source) { BitmapImage sourceBitmapImage = (BitmapImage) source; // Set any state required before actual clone happens ClonePrequel(sourceBitmapImage); base.GetAsFrozenCore(source); // Set state once clone has finished ClonePostscript(sourceBitmapImage); } ////// Implementation of Freezable.GetCurrentValueAsFrozenCore() /// protected override void GetCurrentValueAsFrozenCore(Freezable source) { BitmapImage sourceBitmapImage = (BitmapImage) source; // Set any state required before actual clone happens ClonePrequel(sourceBitmapImage); base.GetCurrentValueAsFrozenCore(source); // Set state once clone has finished ClonePostscript(sourceBitmapImage); } #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 BitmapImage.UriCachePolicy property. /// public static readonly DependencyProperty UriCachePolicyProperty; ////// The DependencyProperty for the BitmapImage.UriSource property. /// public static readonly DependencyProperty UriSourceProperty; ////// The DependencyProperty for the BitmapImage.StreamSource property. /// public static readonly DependencyProperty StreamSourceProperty; ////// The DependencyProperty for the BitmapImage.DecodePixelWidth property. /// public static readonly DependencyProperty DecodePixelWidthProperty; ////// The DependencyProperty for the BitmapImage.DecodePixelHeight property. /// public static readonly DependencyProperty DecodePixelHeightProperty; ////// The DependencyProperty for the BitmapImage.Rotation property. /// public static readonly DependencyProperty RotationProperty; ////// The DependencyProperty for the BitmapImage.SourceRect property. /// public static readonly DependencyProperty SourceRectProperty; ////// The DependencyProperty for the BitmapImage.CreateOptions property. /// public static readonly DependencyProperty CreateOptionsProperty; ////// The DependencyProperty for the BitmapImage.CacheOption property. /// public static readonly DependencyProperty CacheOptionProperty; #endregion Dependency Properties //----------------------------------------------------- // // Internal Fields // //------------------------------------------------------ #region Internal Fields internal static RequestCachePolicy s_UriCachePolicy = null; internal static Uri s_UriSource = null; internal static Stream s_StreamSource = null; internal const int c_DecodePixelWidth = 0; internal const int c_DecodePixelHeight = 0; internal const Rotation c_Rotation = Rotation.Rotate0; internal static Int32Rect s_SourceRect = Int32Rect.Empty; internal static BitmapCreateOptions s_CreateOptions = BitmapCreateOptions.None; internal static BitmapCacheOption s_CacheOption = BitmapCacheOption.Default; #endregion Internal Fields #region Constructors //------------------------------------------------------ // // Constructors // //----------------------------------------------------- static BitmapImage() { // 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) // // Initializations Type typeofThis = typeof(BitmapImage); UriCachePolicyProperty = RegisterProperty("UriCachePolicy", typeof(RequestCachePolicy), typeofThis, null, new PropertyChangedCallback(UriCachePolicyPropertyChanged), null, /* isIndependentlyAnimated = */ false, /* coerceValueCallback */ new CoerceValueCallback(CoerceUriCachePolicy)); UriSourceProperty = RegisterProperty("UriSource", typeof(Uri), typeofThis, null, new PropertyChangedCallback(UriSourcePropertyChanged), null, /* isIndependentlyAnimated = */ false, /* coerceValueCallback */ new CoerceValueCallback(CoerceUriSource)); StreamSourceProperty = RegisterProperty("StreamSource", typeof(Stream), typeofThis, null, new PropertyChangedCallback(StreamSourcePropertyChanged), null, /* isIndependentlyAnimated = */ false, /* coerceValueCallback */ new CoerceValueCallback(CoerceStreamSource)); DecodePixelWidthProperty = RegisterProperty("DecodePixelWidth", typeof(int), typeofThis, 0, new PropertyChangedCallback(DecodePixelWidthPropertyChanged), null, /* isIndependentlyAnimated = */ false, /* coerceValueCallback */ new CoerceValueCallback(CoerceDecodePixelWidth)); DecodePixelHeightProperty = RegisterProperty("DecodePixelHeight", typeof(int), typeofThis, 0, new PropertyChangedCallback(DecodePixelHeightPropertyChanged), null, /* isIndependentlyAnimated = */ false, /* coerceValueCallback */ new CoerceValueCallback(CoerceDecodePixelHeight)); RotationProperty = RegisterProperty("Rotation", typeof(Rotation), typeofThis, Rotation.Rotate0, new PropertyChangedCallback(RotationPropertyChanged), new ValidateValueCallback(System.Windows.Media.Imaging.ValidateEnums.IsRotationValid), /* isIndependentlyAnimated = */ false, /* coerceValueCallback */ new CoerceValueCallback(CoerceRotation)); SourceRectProperty = RegisterProperty("SourceRect", typeof(Int32Rect), typeofThis, Int32Rect.Empty, new PropertyChangedCallback(SourceRectPropertyChanged), null, /* isIndependentlyAnimated = */ false, /* coerceValueCallback */ new CoerceValueCallback(CoerceSourceRect)); CreateOptionsProperty = RegisterProperty("CreateOptions", typeof(BitmapCreateOptions), typeofThis, BitmapCreateOptions.None, new PropertyChangedCallback(CreateOptionsPropertyChanged), null, /* isIndependentlyAnimated = */ false, /* coerceValueCallback */ new CoerceValueCallback(CoerceCreateOptions)); CacheOptionProperty = RegisterProperty("CacheOption", typeof(BitmapCacheOption), typeofThis, BitmapCacheOption.Default, new PropertyChangedCallback(CacheOptionPropertyChanged), null, /* isIndependentlyAnimated = */ false, /* coerceValueCallback */ new CoerceValueCallback(CoerceCacheOption)); } #endregion Constructors } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ProjectionPath.cs
- fixedPageContentExtractor.cs
- DataColumnChangeEvent.cs
- AutoFocusStyle.xaml.cs
- Polygon.cs
- HitTestWithGeometryDrawingContextWalker.cs
- ContractCodeDomInfo.cs
- DBConcurrencyException.cs
- COM2IVsPerPropertyBrowsingHandler.cs
- DocumentScope.cs
- HttpProtocolReflector.cs
- ButtonBaseAutomationPeer.cs
- BuildProvider.cs
- SoapElementAttribute.cs
- LongMinMaxAggregationOperator.cs
- XmlSchemaSimpleContentRestriction.cs
- Exceptions.cs
- xmlglyphRunInfo.cs
- SynchronizedInputPattern.cs
- ScaleTransform3D.cs
- ResourcesGenerator.cs
- ManagementInstaller.cs
- PasswordBox.cs
- CalendarDay.cs
- TranslateTransform3D.cs
- DataGridViewColumnHeaderCell.cs
- DoubleAnimationBase.cs
- XmlQueryType.cs
- DesignerTextBoxAdapter.cs
- Preprocessor.cs
- AutomationPatternInfo.cs
- Vector3DCollectionConverter.cs
- DesignerAutoFormatStyle.cs
- TreeViewImageIndexConverter.cs
- SQLRoleProvider.cs
- ConnectorSelectionGlyph.cs
- Document.cs
- Int32Animation.cs
- TogglePatternIdentifiers.cs
- DashStyle.cs
- WebEncodingValidatorAttribute.cs
- WithParamAction.cs
- MimeReflector.cs
- DesignBindingEditor.cs
- QilInvokeLateBound.cs
- DrawingCollection.cs
- SQLBinaryStorage.cs
- _StreamFramer.cs
- StateValidator.cs
- RunInstallerAttribute.cs
- SqlDuplicator.cs
- OleDbTransaction.cs
- MessageSmuggler.cs
- NGCSerializer.cs
- CorePropertiesFilter.cs
- DrawToolTipEventArgs.cs
- CommonObjectSecurity.cs
- TableAdapterManagerGenerator.cs
- LinkConverter.cs
- SchemaMapping.cs
- BamlLocalizer.cs
- Configuration.cs
- SoapExtensionStream.cs
- PageCodeDomTreeGenerator.cs
- MergeFailedEvent.cs
- VisualBasicExpressionConverter.cs
- XmlWriterTraceListener.cs
- ZipIORawDataFileBlock.cs
- TagNameToTypeMapper.cs
- RC2.cs
- Deserializer.cs
- ProfileProvider.cs
- CompilerTypeWithParams.cs
- SplitterPanel.cs
- DataViewSettingCollection.cs
- DurableOperationContext.cs
- HttpsTransportBindingElement.cs
- AsyncCompletedEventArgs.cs
- XmlSerializer.cs
- ReadOnlyObservableCollection.cs
- TypedElement.cs
- CacheEntry.cs
- DaylightTime.cs
- ServerValidateEventArgs.cs
- WebPartEventArgs.cs
- XmlLinkedNode.cs
- IdentityReference.cs
- UpdateRecord.cs
- QueryableFilterRepeater.cs
- SafeRightsManagementHandle.cs
- Rect3D.cs
- xmlsaver.cs
- ColorKeyFrameCollection.cs
- TypeGeneratedEventArgs.cs
- Ops.cs
- LinqDataSourceHelper.cs
- WindowsEditBox.cs
- MaskedTextBox.cs
- StateBag.cs
- ProxyAssemblyNotLoadedException.cs