1 write to _floatingHeader
PresentationFramework (1)
System\Windows\Controls\GridViewHeaderRowPresenter.cs (1)
1200_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; 1207Debug.Assert(_floatingHeader != null, "floating header is null"); 1209_floatingHeader.Style = srcHeader.Style; 1211_floatingHeader.FloatSourceHeader = srcHeader; 1212_floatingHeader.Width = srcHeader.ActualWidth; 1213_floatingHeader.Height = srcHeader.ActualHeight; 1214_floatingHeader.SetValue(GridViewColumnHeader.ColumnPropertyKey, srcHeader.Column); 1215_floatingHeader.Visibility = Visibility.Hidden; 1218_floatingHeader.MinWidth = srcHeader.MinWidth; 1219_floatingHeader.MinHeight = srcHeader.MinHeight; 1224_floatingHeader.ContentTemplate = srcHeader.ContentTemplate; 1230_floatingHeader.ContentTemplateSelector = srcHeader.ContentTemplateSelector; 1235_floatingHeader.Content = srcHeader.Content; 1530InternalChildren.Remove(_floatingHeader); 1546_floatingHeader.Visibility = Visibility.Hidden; 1547_floatingHeader.ResetFloatingHeaderCanvasBackground(); 1558bool isMoveHeader = IsMousePositionValid(_floatingHeader, _currentPos, 2.0);