1 write to _floatingHeader
PresentationFramework (1)
System\Windows\Controls\GridViewHeaderRowPresenter.cs (1)
1197_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; 1204Debug.Assert(_floatingHeader != null, "floating header is null"); 1206_floatingHeader.Style = srcHeader.Style; 1208_floatingHeader.FloatSourceHeader = srcHeader; 1209_floatingHeader.Width = srcHeader.ActualWidth; 1210_floatingHeader.Height = srcHeader.ActualHeight; 1211_floatingHeader.SetValue(GridViewColumnHeader.ColumnPropertyKey, srcHeader.Column); 1212_floatingHeader.Visibility = Visibility.Hidden; 1215_floatingHeader.MinWidth = srcHeader.MinWidth; 1216_floatingHeader.MinHeight = srcHeader.MinHeight; 1221_floatingHeader.ContentTemplate = srcHeader.ContentTemplate; 1227_floatingHeader.ContentTemplateSelector = srcHeader.ContentTemplateSelector; 1232_floatingHeader.Content = srcHeader.Content; 1527InternalChildren.Remove(_floatingHeader); 1543_floatingHeader.Visibility = Visibility.Hidden; 1544_floatingHeader.ResetFloatingHeaderCanvasBackground(); 1555bool isMoveHeader = IsMousePositionValid(_floatingHeader, _currentPos, 2.0);