1 write to _floatingHeader
PresentationFramework (1)
System\Windows\Controls\GridViewHeaderRowPresenter.cs (1)
1201_floatingHeader = header;
21 references to _floatingHeader
PresentationFramework (21)
System\Windows\Controls\GridViewHeaderRowPresenter.cs (21)
312Debug.Assert(_floatingHeader != null, "_floatingHeader is null"); 318_floatingHeader.Measure(constraint); 393_floatingHeader.Arrange(new Rect(new Point(_currentPos.X - _relativeStartPos.X, 0), HeadersPositionList[_startColumnIndex].Size)); 475bool isDisplayingFloatingHeader = IsMousePositionValid(_floatingHeader, _currentPos, 2.0); 478_indicator.Visibility = _floatingHeader.Visibility = isDisplayingFloatingHeader ? Visibility.Visible : Visibility.Hidden; 1208Debug.Assert(_floatingHeader != null, "floating header is null"); 1210_floatingHeader.Style = srcHeader.Style; 1212_floatingHeader.FloatSourceHeader = srcHeader; 1213_floatingHeader.Width = srcHeader.ActualWidth; 1214_floatingHeader.Height = srcHeader.ActualHeight; 1215_floatingHeader.SetValue(GridViewColumnHeader.ColumnPropertyKey, srcHeader.Column); 1216_floatingHeader.Visibility = Visibility.Hidden; 1219_floatingHeader.MinWidth = srcHeader.MinWidth; 1220_floatingHeader.MinHeight = srcHeader.MinHeight; 1225_floatingHeader.ContentTemplate = srcHeader.ContentTemplate; 1231_floatingHeader.ContentTemplateSelector = srcHeader.ContentTemplateSelector; 1236_floatingHeader.Content = srcHeader.Content; 1531InternalChildren.Remove(_floatingHeader); 1547_floatingHeader.Visibility = Visibility.Hidden; 1548_floatingHeader.ResetFloatingHeaderCanvasBackground(); 1559bool isMoveHeader = IsMousePositionValid(_floatingHeader, _currentPos, 2.0);