1 write to _floatingHeader
PresentationFramework (1)
System\Windows\Controls\GridViewHeaderRowPresenter.cs (1)
1199_floatingHeader = header;
21 references to _floatingHeader
PresentationFramework (21)
System\Windows\Controls\GridViewHeaderRowPresenter.cs (21)
315Debug.Assert(_floatingHeader != null, "_floatingHeader is null"); 321_floatingHeader.Measure(constraint); 396_floatingHeader.Arrange(new Rect(new Point(_currentPos.X - _relativeStartPos.X, 0), HeadersPositionList[_startColumnIndex].Size)); 478bool isDisplayingFloatingHeader = IsMousePositionValid(_floatingHeader, _currentPos, 2.0); 481_indicator.Visibility = _floatingHeader.Visibility = isDisplayingFloatingHeader ? Visibility.Visible : Visibility.Hidden; 1206Debug.Assert(_floatingHeader != null, "floating header is null"); 1208_floatingHeader.Style = srcHeader.Style; 1210_floatingHeader.FloatSourceHeader = srcHeader; 1211_floatingHeader.Width = srcHeader.ActualWidth; 1212_floatingHeader.Height = srcHeader.ActualHeight; 1213_floatingHeader.SetValue(GridViewColumnHeader.ColumnPropertyKey, srcHeader.Column); 1214_floatingHeader.Visibility = Visibility.Hidden; 1217_floatingHeader.MinWidth = srcHeader.MinWidth; 1218_floatingHeader.MinHeight = srcHeader.MinHeight; 1223_floatingHeader.ContentTemplate = srcHeader.ContentTemplate; 1229_floatingHeader.ContentTemplateSelector = srcHeader.ContentTemplateSelector; 1234_floatingHeader.Content = srcHeader.Content; 1532InternalChildren.Remove(_floatingHeader); 1548_floatingHeader.Visibility = Visibility.Hidden; 1549_floatingHeader.ResetFloatingHeaderCanvasBackground(); 1563bool isMoveHeader = IsMousePositionValid(_floatingHeader, _currentPos, 2.0);