Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Controls / DataGridColumnFloatingHeader.cs / 1305600 / DataGridColumnFloatingHeader.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; using System.Windows; using System.Windows.Controls.Primitives; using System.Windows.Media; using MS.Internal; namespace System.Windows.Controls { ////// The control which would be used to indicate the drag during column header drag-drop /// [TemplatePart(Name = "PART_VisualBrushCanvas", Type = typeof(Canvas))] internal class DataGridColumnFloatingHeader : Control { #region Constructors static DataGridColumnFloatingHeader() { DefaultStyleKeyProperty.OverrideMetadata( typeof(DataGridColumnFloatingHeader), new FrameworkPropertyMetadata(DataGridColumnHeader.ColumnFloatingHeaderStyleKey)); WidthProperty.OverrideMetadata( typeof(DataGridColumnFloatingHeader), new FrameworkPropertyMetadata(new PropertyChangedCallback(OnWidthChanged), new CoerceValueCallback(OnCoerceWidth))); HeightProperty.OverrideMetadata( typeof(DataGridColumnFloatingHeader), new FrameworkPropertyMetadata(new PropertyChangedCallback(OnHeightChanged), new CoerceValueCallback(OnCoerceHeight))); } #endregion #region Static Methods private static void OnWidthChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { DataGridColumnFloatingHeader header = (DataGridColumnFloatingHeader)d; double width = (double)e.NewValue; if (header._visualBrushCanvas != null && !DoubleUtil.IsNaN(width)) { VisualBrush brush = header._visualBrushCanvas.Background as VisualBrush; if (brush != null) { Rect viewBox = brush.Viewbox; brush.Viewbox = new Rect(viewBox.X, viewBox.Y, width - header.GetVisualCanvasMarginX(), viewBox.Height); } } } private static object OnCoerceWidth(DependencyObject d, object baseValue) { double width = (double)baseValue; DataGridColumnFloatingHeader header = (DataGridColumnFloatingHeader)d; if (header._referenceHeader != null && DoubleUtil.IsNaN(width)) { return header._referenceHeader.ActualWidth + header.GetVisualCanvasMarginX(); } return baseValue; } private static void OnHeightChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { DataGridColumnFloatingHeader header = (DataGridColumnFloatingHeader)d; double height = (double)e.NewValue; if (header._visualBrushCanvas != null && !DoubleUtil.IsNaN(height)) { VisualBrush brush = header._visualBrushCanvas.Background as VisualBrush; if (brush != null) { Rect viewBox = brush.Viewbox; brush.Viewbox = new Rect(viewBox.X, viewBox.Y, viewBox.Width, height - header.GetVisualCanvasMarginY()); } } } private static object OnCoerceHeight(DependencyObject d, object baseValue) { double height = (double)baseValue; DataGridColumnFloatingHeader header = (DataGridColumnFloatingHeader)d; if (header._referenceHeader != null && DoubleUtil.IsNaN(height)) { return header._referenceHeader.ActualHeight + header.GetVisualCanvasMarginY(); } return baseValue; } #endregion #region Methods and Properties public override void OnApplyTemplate() { base.OnApplyTemplate(); _visualBrushCanvas = GetTemplateChild(VisualBrushCanvasTemplateName) as Canvas; UpdateVisualBrush(); } internal DataGridColumnHeader ReferenceHeader { get { return _referenceHeader; } set { _referenceHeader = value; } } private void UpdateVisualBrush() { if (_referenceHeader != null && _visualBrushCanvas != null) { VisualBrush visualBrush = new VisualBrush(_referenceHeader); visualBrush.ViewboxUnits = BrushMappingMode.Absolute; double width = Width; if (DoubleUtil.IsNaN(width)) { width = _referenceHeader.ActualWidth; } else { width = width - GetVisualCanvasMarginX(); } double height = Height; if (DoubleUtil.IsNaN(height)) { height = _referenceHeader.ActualHeight; } else { height = height - GetVisualCanvasMarginY(); } Vector offset = VisualTreeHelper.GetOffset(_referenceHeader); visualBrush.Viewbox = new Rect(offset.X, offset.Y, width, height); _visualBrushCanvas.Background = visualBrush; } } internal void ClearHeader() { _referenceHeader = null; if (_visualBrushCanvas != null) { _visualBrushCanvas.Background = null; } } private double GetVisualCanvasMarginX() { double delta = 0; if (_visualBrushCanvas != null) { Thickness margin = _visualBrushCanvas.Margin; delta += margin.Left; delta += margin.Right; } return delta; } private double GetVisualCanvasMarginY() { double delta = 0; if (_visualBrushCanvas != null) { Thickness margin = _visualBrushCanvas.Margin; delta += margin.Top; delta += margin.Bottom; } return delta; } #endregion #region Data private DataGridColumnHeader _referenceHeader; private const string VisualBrushCanvasTemplateName = "PART_VisualBrushCanvas"; private Canvas _visualBrushCanvas; #endregion } } // 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
- PeerApplicationLaunchInfo.cs
- SafeProcessHandle.cs
- DependencyPropertyHelper.cs
- HitTestResult.cs
- StreamReader.cs
- BCryptSafeHandles.cs
- TemporaryBitmapFile.cs
- tibetanshape.cs
- SemaphoreFullException.cs
- ButtonColumn.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- GroupItemAutomationPeer.cs
- DataGridRow.cs
- SystemResources.cs
- InteropAutomationProvider.cs
- FormsAuthenticationEventArgs.cs
- InternalControlCollection.cs
- BrowsableAttribute.cs
- DefaultValueConverter.cs
- Italic.cs
- TreeNodeCollection.cs
- AccessViolationException.cs
- XmlSchemaObjectCollection.cs
- SmtpDigestAuthenticationModule.cs
- FixedPageAutomationPeer.cs
- TreeViewImageKeyConverter.cs
- ADMembershipUser.cs
- NotImplementedException.cs
- ContentValidator.cs
- TemplatedEditableDesignerRegion.cs
- TraceSection.cs
- SkinBuilder.cs
- AllMembershipCondition.cs
- cache.cs
- GifBitmapDecoder.cs
- DataGridViewSortCompareEventArgs.cs
- BrowserPolicyValidator.cs
- AsymmetricAlgorithm.cs
- ResourceType.cs
- wmiprovider.cs
- FillBehavior.cs
- ConfigsHelper.cs
- ResourceAttributes.cs
- MetaForeignKeyColumn.cs
- ZipIOBlockManager.cs
- UriSection.cs
- X509SecurityTokenParameters.cs
- ControlIdConverter.cs
- LineServicesCallbacks.cs
- SpeechUI.cs
- FileNotFoundException.cs
- ElementProxy.cs
- TagMapInfo.cs
- GlyphsSerializer.cs
- _LazyAsyncResult.cs
- RolePrincipal.cs
- EqualityComparer.cs
- GroupBoxRenderer.cs
- HttpCapabilitiesBase.cs
- NativeMethods.cs
- HttpRuntimeSection.cs
- TraceHelpers.cs
- CompositeDataBoundControl.cs
- NamedPipeTransportManager.cs
- WebDescriptionAttribute.cs
- ScriptReference.cs
- SoundPlayerAction.cs
- ParameterRetriever.cs
- PeerCustomResolverElement.cs
- ItemCollection.cs
- AuthorizationSection.cs
- ToolboxBitmapAttribute.cs
- TraceHandlerErrorFormatter.cs
- Itemizer.cs
- SafeNativeMethods.cs
- wmiprovider.cs
- WebPartHeaderCloseVerb.cs
- _SSPISessionCache.cs
- ByteAnimationBase.cs
- SpeechRecognizer.cs
- DataServiceRequest.cs
- WebPartUserCapability.cs
- PrtCap_Public_Simple.cs
- SchemaType.cs
- EntityType.cs
- XmlCompatibilityReader.cs
- SqlWebEventProvider.cs
- SupportingTokenDuplexChannel.cs
- MessageBuilder.cs
- RegistryExceptionHelper.cs
- OdbcTransaction.cs
- EdmConstants.cs
- SrgsRulesCollection.cs
- MergeEnumerator.cs
- EdmValidator.cs
- OdbcParameterCollection.cs
- NativeRecognizer.cs
- LogicalCallContext.cs
- DataGridViewRowStateChangedEventArgs.cs
- EntityTransaction.cs