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
- CompositeCollection.cs
- InheritanceAttribute.cs
- _KerberosClient.cs
- HttpCookieCollection.cs
- GeometryValueSerializer.cs
- ColumnMapTranslator.cs
- XPathException.cs
- XmlDigitalSignatureProcessor.cs
- PingOptions.cs
- CodeAttributeArgumentCollection.cs
- NotificationContext.cs
- GridProviderWrapper.cs
- GeometryCombineModeValidation.cs
- BamlTreeMap.cs
- ScrollBarAutomationPeer.cs
- StyleCollection.cs
- PackageProperties.cs
- PropertySegmentSerializationProvider.cs
- PageContent.cs
- ExpandCollapseProviderWrapper.cs
- ExpressionBuilder.cs
- IsolationInterop.cs
- ErrorTableItemStyle.cs
- ParameterCollection.cs
- WindowsTokenRoleProvider.cs
- DbConvert.cs
- XmlSchemaObjectCollection.cs
- PlatformCulture.cs
- DeviceContext2.cs
- CodeRemoveEventStatement.cs
- ImageFormatConverter.cs
- PtsContext.cs
- GenericWebPart.cs
- BigInt.cs
- ThreadInterruptedException.cs
- Object.cs
- BrowserCapabilitiesFactoryBase.cs
- XmlSchemaSimpleTypeUnion.cs
- TemplatePagerField.cs
- JpegBitmapEncoder.cs
- SQLCharsStorage.cs
- SudsWriter.cs
- SqlBinder.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- BinHexDecoder.cs
- TableCell.cs
- ObjRef.cs
- TableCell.cs
- StylusTouchDevice.cs
- ItemContainerGenerator.cs
- DoubleKeyFrameCollection.cs
- CommonObjectSecurity.cs
- Point.cs
- CursorInteropHelper.cs
- TableDetailsRow.cs
- DataTransferEventArgs.cs
- HtmlInputImage.cs
- control.ime.cs
- WebPartDisplayMode.cs
- StreamResourceInfo.cs
- DataRecord.cs
- DiagnosticsConfigurationHandler.cs
- ArgIterator.cs
- GeneratedContractType.cs
- CompositeCollection.cs
- ScrollData.cs
- TextFormatterImp.cs
- ApplicationFileCodeDomTreeGenerator.cs
- SymmetricAlgorithm.cs
- XmlSchemaException.cs
- RegexRunnerFactory.cs
- DropTarget.cs
- Rotation3DKeyFrameCollection.cs
- PointAnimationBase.cs
- WebPartVerbCollection.cs
- AmbiguousMatchException.cs
- parserscommon.cs
- OracleTransaction.cs
- VirtualizingStackPanel.cs
- UIElement3DAutomationPeer.cs
- EncodingStreamWrapper.cs
- ToolstripProfessionalRenderer.cs
- _ScatterGatherBuffers.cs
- ScrollProviderWrapper.cs
- InputProcessorProfilesLoader.cs
- OperatingSystem.cs
- DetailsViewUpdateEventArgs.cs
- EdmSchemaError.cs
- TextParaLineResult.cs
- SafeThemeHandle.cs
- CompilerLocalReference.cs
- DateTimeSerializationSection.cs
- HttpHeaderCollection.cs
- RegexTree.cs
- TitleStyle.cs
- FixedTextSelectionProcessor.cs
- XmlAnyElementAttribute.cs
- FileEnumerator.cs
- WebPartConnectionsCancelEventArgs.cs
- WCFServiceClientProxyGenerator.cs