1 write to _floatingHeader
PresentationFramework (1)
System\Windows\Controls\GridViewHeaderRowPresenter.cs (1)
1169_floatingHeader = header;
21 references to _floatingHeader
PresentationFramework (21)
System\Windows\Controls\GridViewHeaderRowPresenter.cs (21)
311Debug.Assert(_floatingHeader != null, "_floatingHeader is null"); 317_floatingHeader.Measure(constraint); 392_floatingHeader.Arrange(new Rect(new Point(_currentPos.X - _relativeStartPos.X, 0), HeadersPositionList[_startColumnIndex].Size)); 474bool isDisplayingFloatingHeader = IsMousePositionValid(_floatingHeader, _currentPos, 2.0); 477_indicator.Visibility = _floatingHeader.Visibility = isDisplayingFloatingHeader ? Visibility.Visible : Visibility.Hidden; 1176Debug.Assert(_floatingHeader != null, "floating header is null"); 1178_floatingHeader.Style = srcHeader.Style; 1180_floatingHeader.FloatSourceHeader = srcHeader; 1181_floatingHeader.Width = srcHeader.ActualWidth; 1182_floatingHeader.Height = srcHeader.ActualHeight; 1183_floatingHeader.SetValue(GridViewColumnHeader.ColumnPropertyKey, srcHeader.Column); 1184_floatingHeader.Visibility = Visibility.Hidden; 1187_floatingHeader.MinWidth = srcHeader.MinWidth; 1188_floatingHeader.MinHeight = srcHeader.MinHeight; 1193_floatingHeader.ContentTemplate = srcHeader.ContentTemplate; 1199_floatingHeader.ContentTemplateSelector = srcHeader.ContentTemplateSelector; 1204_floatingHeader.Content = srcHeader.Content; 1499InternalChildren.Remove(_floatingHeader); 1515_floatingHeader.Visibility = Visibility.Hidden; 1516_floatingHeader.ResetFloatingHeaderCanvasBackground(); 1527bool isMoveHeader = IsMousePositionValid(_floatingHeader, _currentPos, 2.0);