1 write to _floatingHeader
PresentationFramework (1)
System\Windows\Controls\GridViewHeaderRowPresenter.cs (1)
1196_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; 1203Debug.Assert(_floatingHeader != null, "floating header is null"); 1205_floatingHeader.Style = srcHeader.Style; 1207_floatingHeader.FloatSourceHeader = srcHeader; 1208_floatingHeader.Width = srcHeader.ActualWidth; 1209_floatingHeader.Height = srcHeader.ActualHeight; 1210_floatingHeader.SetValue(GridViewColumnHeader.ColumnPropertyKey, srcHeader.Column); 1211_floatingHeader.Visibility = Visibility.Hidden; 1214_floatingHeader.MinWidth = srcHeader.MinWidth; 1215_floatingHeader.MinHeight = srcHeader.MinHeight; 1220_floatingHeader.ContentTemplate = srcHeader.ContentTemplate; 1226_floatingHeader.ContentTemplateSelector = srcHeader.ContentTemplateSelector; 1231_floatingHeader.Content = srcHeader.Content; 1529InternalChildren.Remove(_floatingHeader); 1545_floatingHeader.Visibility = Visibility.Hidden; 1546_floatingHeader.ResetFloatingHeaderCanvasBackground(); 1560bool isMoveHeader = IsMousePositionValid(_floatingHeader, _currentPos, 2.0);