Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Framework / System / Windows / Documents / Floater.cs / 1 / Floater.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // Description: Floater element. // //--------------------------------------------------------------------------- using System.ComponentModel; using MS.Internal; using MS.Internal.PtsHost.UnsafeNativeMethods; // PTS restrictions namespace System.Windows.Documents { ////// Floater element /// public class Floater : AnchoredBlock { //------------------------------------------------------------------- // // Constructors // //------------------------------------------------------------------- #region Constructors ////// Static ctor. Initializes property metadata. /// static Floater() { DefaultStyleKeyProperty.OverrideMetadata(typeof(Floater), new FrameworkPropertyMetadata(typeof(Floater))); } ////// Initialized the new instance of a Floater /// public Floater() : this(null, null) { } ////// Initialized the new instance of a Floater specifying a Block added /// to a Floater as its first child. /// /// /// Block added as a first initial child of the Floater. /// public Floater(Block childBlock) : this(childBlock, null) { } ////// Creates a new Floater instance. /// /// /// Optional child of the new Floater, may be null. /// /// /// Optional position at which to insert the new Floater. May /// be null. /// public Floater(Block childBlock, TextPointer insertionPosition) : base(childBlock, insertionPosition) { } #endregion Constructors //-------------------------------------------------------------------- // // Public Properties // //------------------------------------------------------------------- #region Public Properties ////// DependencyProperty for public static readonly DependencyProperty HorizontalAlignmentProperty = FrameworkElement.HorizontalAlignmentProperty.AddOwner( typeof(Floater), new FrameworkPropertyMetadata( HorizontalAlignment.Stretch, FrameworkPropertyMetadataOptions.AffectsMeasure)); ///property. /// /// /// public HorizontalAlignment HorizontalAlignment { get { return (HorizontalAlignment)GetValue(HorizontalAlignmentProperty); } set { SetValue(HorizontalAlignmentProperty, value); } } ////// DependencyProperty for public static readonly DependencyProperty WidthProperty = DependencyProperty.Register( "Width", typeof(double), typeof(Floater), new FrameworkPropertyMetadata( Double.NaN, FrameworkPropertyMetadataOptions.AffectsMeasure), new ValidateValueCallback(IsValidWidth)); ///property. /// /// The Width property specifies the width of the element. /// [TypeConverter(typeof(LengthConverter))] public double Width { get { return (double)GetValue(WidthProperty); } set { SetValue(WidthProperty, value); } } #endregion Public Properties //-------------------------------------------------------------------- // // Private Methods // //-------------------------------------------------------------------- #region Private Methods private static bool IsValidWidth(object o) { double width = (double)o; double maxWidth = Math.Min(1000000, PTS.MaxPageSize); if (Double.IsNaN(width)) { // Default value of width is NaN return true; } if (width < 0 || width > maxWidth) { return false; } return true; } #endregion Private Methods } } // 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. // // Description: Floater element. // //--------------------------------------------------------------------------- using System.ComponentModel; using MS.Internal; using MS.Internal.PtsHost.UnsafeNativeMethods; // PTS restrictions namespace System.Windows.Documents { ////// Floater element /// public class Floater : AnchoredBlock { //------------------------------------------------------------------- // // Constructors // //------------------------------------------------------------------- #region Constructors ////// Static ctor. Initializes property metadata. /// static Floater() { DefaultStyleKeyProperty.OverrideMetadata(typeof(Floater), new FrameworkPropertyMetadata(typeof(Floater))); } ////// Initialized the new instance of a Floater /// public Floater() : this(null, null) { } ////// Initialized the new instance of a Floater specifying a Block added /// to a Floater as its first child. /// /// /// Block added as a first initial child of the Floater. /// public Floater(Block childBlock) : this(childBlock, null) { } ////// Creates a new Floater instance. /// /// /// Optional child of the new Floater, may be null. /// /// /// Optional position at which to insert the new Floater. May /// be null. /// public Floater(Block childBlock, TextPointer insertionPosition) : base(childBlock, insertionPosition) { } #endregion Constructors //-------------------------------------------------------------------- // // Public Properties // //------------------------------------------------------------------- #region Public Properties ////// DependencyProperty for public static readonly DependencyProperty HorizontalAlignmentProperty = FrameworkElement.HorizontalAlignmentProperty.AddOwner( typeof(Floater), new FrameworkPropertyMetadata( HorizontalAlignment.Stretch, FrameworkPropertyMetadataOptions.AffectsMeasure)); ///property. /// /// /// public HorizontalAlignment HorizontalAlignment { get { return (HorizontalAlignment)GetValue(HorizontalAlignmentProperty); } set { SetValue(HorizontalAlignmentProperty, value); } } ////// DependencyProperty for public static readonly DependencyProperty WidthProperty = DependencyProperty.Register( "Width", typeof(double), typeof(Floater), new FrameworkPropertyMetadata( Double.NaN, FrameworkPropertyMetadataOptions.AffectsMeasure), new ValidateValueCallback(IsValidWidth)); ///property. /// /// The Width property specifies the width of the element. /// [TypeConverter(typeof(LengthConverter))] public double Width { get { return (double)GetValue(WidthProperty); } set { SetValue(WidthProperty, value); } } #endregion Public Properties //-------------------------------------------------------------------- // // Private Methods // //-------------------------------------------------------------------- #region Private Methods private static bool IsValidWidth(object o) { double width = (double)o; double maxWidth = Math.Min(1000000, PTS.MaxPageSize); if (Double.IsNaN(width)) { // Default value of width is NaN return true; } if (width < 0 || width > maxWidth) { return false; } return true; } #endregion Private Methods } } // 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
- InstanceData.cs
- MobileUserControl.cs
- XmlSchemaComplexContent.cs
- LinkConverter.cs
- WindowsRichEditRange.cs
- ToolStripItemEventArgs.cs
- SqlGenerator.cs
- OdbcDataReader.cs
- PropertyFilter.cs
- BuildResultCache.cs
- TaskExtensions.cs
- InternalTransaction.cs
- SchemaMerger.cs
- EntityContainer.cs
- RotateTransform3D.cs
- TimeSpanConverter.cs
- WebCategoryAttribute.cs
- StrongName.cs
- PerformanceCounterNameAttribute.cs
- AndAlso.cs
- DesignTimeParseData.cs
- VisualStyleInformation.cs
- BookmarkInfo.cs
- ApplicationProxyInternal.cs
- XmlLinkedNode.cs
- FileDialogCustomPlaces.cs
- XmlValueConverter.cs
- CodeArrayIndexerExpression.cs
- HashLookup.cs
- XhtmlTextWriter.cs
- BatchParser.cs
- basenumberconverter.cs
- XmlSchemaDocumentation.cs
- CodeMethodMap.cs
- IndexedGlyphRun.cs
- SetterBase.cs
- DataGridCell.cs
- PackageStore.cs
- ConfigurationSectionCollection.cs
- TemplatePagerField.cs
- __TransparentProxy.cs
- TypeSystem.cs
- NavigationProperty.cs
- FileUpload.cs
- FamilyTypefaceCollection.cs
- ImportContext.cs
- SortQuery.cs
- DataTableMappingCollection.cs
- WSSecureConversationDec2005.cs
- DataRow.cs
- FragmentQuery.cs
- OdbcFactory.cs
- UnsafeNativeMethods.cs
- GridViewCellAutomationPeer.cs
- SchemaNames.cs
- SystemException.cs
- StylusPointPropertyId.cs
- MediaElement.cs
- ComponentDispatcher.cs
- JavaScriptSerializer.cs
- _AcceptOverlappedAsyncResult.cs
- HttpConfigurationContext.cs
- PtsHelper.cs
- TextElementCollection.cs
- DataListItemEventArgs.cs
- HttpHostedTransportConfiguration.cs
- SoapCommonClasses.cs
- VisualCollection.cs
- OptimalTextSource.cs
- XmlDictionaryWriter.cs
- XmlTypeMapping.cs
- DropShadowBitmapEffect.cs
- DataControlReference.cs
- CodeDirectionExpression.cs
- OleDbErrorCollection.cs
- FamilyTypeface.cs
- CatalogPart.cs
- WindowsTooltip.cs
- Attributes.cs
- DependencyPropertyChangedEventArgs.cs
- BaseProcessProtocolHandler.cs
- LayoutSettings.cs
- InfoCardRSACryptoProvider.cs
- ProtectedConfigurationSection.cs
- ActivityScheduledQuery.cs
- TextEditorTyping.cs
- AccessDataSource.cs
- UxThemeWrapper.cs
- SafeNativeMethodsOther.cs
- XmlQueryType.cs
- ConfigurationException.cs
- Scripts.cs
- ScriptReferenceEventArgs.cs
- HijriCalendar.cs
- SBCSCodePageEncoding.cs
- MeasureItemEvent.cs
- PersistenceTypeAttribute.cs
- BCryptSafeHandles.cs
- PhonemeConverter.cs
- UidPropertyAttribute.cs