Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Base / System / Windows / Size.cs / 1 / Size.cs
//------------------------------------------------------------------------------ // Microsoft Avalon // Copyright (c) Microsoft Corporation, 2001, 2002 // // File: Size.cs //----------------------------------------------------------------------------- using System; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Reflection; using System.Text; using System.Collections; using System.Globalization; using System.Windows; using System.Windows.Media; using System.Runtime.InteropServices; namespace System.Windows { ////// Size - A value type which defined a size in terms of non-negative width and height /// public partial struct Size { #region Constructors ////// Constructor which sets the size's initial values. Width and Height must be non-negative /// /// double - The initial Width /// double - THe initial Height public Size(double width, double height) { if (width < 0 || height < 0) { throw new System.ArgumentException(SR.Get(SRID.Size_WidthAndHeightCannotBeNegative)); } _width = width; _height = height; } #endregion Constructors #region Statics ////// Empty - a static property which provides an Empty size. Width and Height are /// negative-infinity. This is the only situation /// where size can be negative. /// public static Size Empty { get { return s_empty; } } #endregion Statics #region Public Methods and Properties ////// IsEmpty - this returns true if this size is the Empty size. /// Note: If size is 0 this Size still contains a 0 or 1 dimensional set /// of points, so this method should not be used to check for 0 area. /// public bool IsEmpty { get { return _width < 0; } } ////// Width - Default is 0, must be non-negative /// public double Width { get { return _width; } set { if (IsEmpty) { throw new System.InvalidOperationException(SR.Get(SRID.Size_CannotModifyEmptySize)); } if (value < 0) { throw new System.ArgumentException(SR.Get(SRID.Size_WidthCannotBeNegative)); } _width = value; } } ////// Height - Default is 0, must be non-negative. /// public double Height { get { return _height; } set { if (IsEmpty) { throw new System.InvalidOperationException(SR.Get(SRID.Size_CannotModifyEmptySize)); } if (value < 0) { throw new System.ArgumentException(SR.Get(SRID.Size_HeightCannotBeNegative)); } _height = value; } } #endregion Public Methods #region Public Operators ////// Explicit conversion to Vector. /// ////// Vector - A Vector equal to this Size /// /// Size - the Size to convert to a Vector public static explicit operator Vector(Size size) { return new Vector(size._width, size._height); } ////// Explicit conversion to Point /// ////// Point - A Point equal to this Size /// /// Size - the Size to convert to a Point public static explicit operator Point(Size size) { return new Point(size._width, size._height); } #endregion Public Operators #region Private Methods static private Size CreateEmptySize() { Size size = new Size(); // We can't set these via the property setters because negatives widths // are rejected in those APIs. size._width = Double.NegativeInfinity; size._height = Double.NegativeInfinity; return size; } #endregion Private Methods #region Private Fields private readonly static Size s_empty = CreateEmptySize(); #endregion Private Fields } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ // Microsoft Avalon // Copyright (c) Microsoft Corporation, 2001, 2002 // // File: Size.cs //----------------------------------------------------------------------------- using System; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Reflection; using System.Text; using System.Collections; using System.Globalization; using System.Windows; using System.Windows.Media; using System.Runtime.InteropServices; namespace System.Windows { ////// Size - A value type which defined a size in terms of non-negative width and height /// public partial struct Size { #region Constructors ////// Constructor which sets the size's initial values. Width and Height must be non-negative /// /// double - The initial Width /// double - THe initial Height public Size(double width, double height) { if (width < 0 || height < 0) { throw new System.ArgumentException(SR.Get(SRID.Size_WidthAndHeightCannotBeNegative)); } _width = width; _height = height; } #endregion Constructors #region Statics ////// Empty - a static property which provides an Empty size. Width and Height are /// negative-infinity. This is the only situation /// where size can be negative. /// public static Size Empty { get { return s_empty; } } #endregion Statics #region Public Methods and Properties ////// IsEmpty - this returns true if this size is the Empty size. /// Note: If size is 0 this Size still contains a 0 or 1 dimensional set /// of points, so this method should not be used to check for 0 area. /// public bool IsEmpty { get { return _width < 0; } } ////// Width - Default is 0, must be non-negative /// public double Width { get { return _width; } set { if (IsEmpty) { throw new System.InvalidOperationException(SR.Get(SRID.Size_CannotModifyEmptySize)); } if (value < 0) { throw new System.ArgumentException(SR.Get(SRID.Size_WidthCannotBeNegative)); } _width = value; } } ////// Height - Default is 0, must be non-negative. /// public double Height { get { return _height; } set { if (IsEmpty) { throw new System.InvalidOperationException(SR.Get(SRID.Size_CannotModifyEmptySize)); } if (value < 0) { throw new System.ArgumentException(SR.Get(SRID.Size_HeightCannotBeNegative)); } _height = value; } } #endregion Public Methods #region Public Operators ////// Explicit conversion to Vector. /// ////// Vector - A Vector equal to this Size /// /// Size - the Size to convert to a Vector public static explicit operator Vector(Size size) { return new Vector(size._width, size._height); } ////// Explicit conversion to Point /// ////// Point - A Point equal to this Size /// /// Size - the Size to convert to a Point public static explicit operator Point(Size size) { return new Point(size._width, size._height); } #endregion Public Operators #region Private Methods static private Size CreateEmptySize() { Size size = new Size(); // We can't set these via the property setters because negatives widths // are rejected in those APIs. size._width = Double.NegativeInfinity; size._height = Double.NegativeInfinity; return size; } #endregion Private Methods #region Private Fields private readonly static Size s_empty = CreateEmptySize(); #endregion Private Fields } } // 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
- ModelItemKeyValuePair.cs
- ExtensionSimplifierMarkupObject.cs
- ToolBarOverflowPanel.cs
- XpsManager.cs
- SessionIDManager.cs
- ActivityDelegate.cs
- AxisAngleRotation3D.cs
- FunctionNode.cs
- Cloud.cs
- SqlCommandSet.cs
- BindableTemplateBuilder.cs
- ExternalDataExchangeService.cs
- BindingContext.cs
- X500Name.cs
- NativeMethods.cs
- RowsCopiedEventArgs.cs
- ContentFileHelper.cs
- MessageQueueKey.cs
- ParseNumbers.cs
- Stopwatch.cs
- WebPartZoneBaseDesigner.cs
- OleStrCAMarshaler.cs
- NGCSerializationManager.cs
- ActivitiesCollection.cs
- ChineseLunisolarCalendar.cs
- DataGridViewMethods.cs
- CompModSwitches.cs
- SiteMapProvider.cs
- PKCS1MaskGenerationMethod.cs
- ImageField.cs
- ThicknessAnimationUsingKeyFrames.cs
- TextTreeFixupNode.cs
- SHA1CryptoServiceProvider.cs
- SourceExpressionException.cs
- SimpleModelProvider.cs
- CodeIdentifier.cs
- PerformanceCounterPermissionEntryCollection.cs
- EntityDataSourceContextCreatingEventArgs.cs
- RuntimeEnvironment.cs
- ErrorReporting.cs
- AliasedExpr.cs
- DropDownList.cs
- MiniParameterInfo.cs
- UITypeEditor.cs
- SwitchAttribute.cs
- DecodeHelper.cs
- DataTrigger.cs
- ContentDefinition.cs
- EntityDataSourceDataSelection.cs
- ApplicationSecurityInfo.cs
- LZCodec.cs
- InputScopeConverter.cs
- ListViewItemEventArgs.cs
- DataGridViewRowPrePaintEventArgs.cs
- _SingleItemRequestCache.cs
- TextReader.cs
- EdmType.cs
- EditorZone.cs
- DelegateHelpers.cs
- Scripts.cs
- TextBoxBase.cs
- SystemResourceKey.cs
- WebServiceTypeData.cs
- ScrollViewerAutomationPeer.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- XmlNamespaceMappingCollection.cs
- HtmlForm.cs
- LogSwitch.cs
- TreeViewImageKeyConverter.cs
- DataGridViewColumnConverter.cs
- SubordinateTransaction.cs
- EnglishPluralizationService.cs
- TransformerInfo.cs
- RoutedUICommand.cs
- EventToken.cs
- Compress.cs
- SchemaDeclBase.cs
- EventSetter.cs
- ObjectStateEntryDbDataRecord.cs
- AuthenticatingEventArgs.cs
- XhtmlBasicLiteralTextAdapter.cs
- IPipelineRuntime.cs
- JsonEncodingStreamWrapper.cs
- GPRECT.cs
- GenericTypeParameterBuilder.cs
- NativeObjectSecurity.cs
- SimpleTypesSurrogate.cs
- ComboBox.cs
- TokenBasedSetEnumerator.cs
- TaskExtensions.cs
- AttributeProviderAttribute.cs
- ClrPerspective.cs
- SeekableReadStream.cs
- SchemaElement.cs
- ItemList.cs
- DataTablePropertyDescriptor.cs
- ProcessModule.cs
- DbDataAdapter.cs
- PenCursorManager.cs
- ZipIOExtraFieldElement.cs