6 implementations of MakeVisible
PresentationFramework (6)
src\Framework\MS\Internal\Documents\DocumentGrid.cs (1)
272public Rect MakeVisible(Visual v, Rect r)
src\Framework\MS\Internal\Documents\FlowDocumentView.cs (1)
589Rect IScrollInfo.MakeVisible(Visual visual, Rect rectangle)
src\Framework\MS\Internal\Documents\TextBoxView.cs (1)
232Rect IScrollInfo.MakeVisible(Visual visual, Rect rectangle)
src\Framework\System\Windows\Controls\Primitives\ScrollContentPresenter.cs (1)
190public Rect MakeVisible(Visual visual, Rect rectangle)
src\Framework\System\Windows\Controls\Stack.cs (1)
244public Rect MakeVisible(Visual visual, Rect rectangle)
src\Framework\System\Windows\Controls\VirtualizingStackPanel.cs (1)
1433public Rect MakeVisible(Visual visual, Rect rectangle)
9 references to MakeVisible
PresentationFramework (9)
src\Framework\MS\Internal\Documents\FlowDocumentView.cs (1)
587/// <see cref="IScrollInfo.MakeVisible"/>
src\Framework\MS\Internal\Documents\ScrollData.cs (1)
173/// <see cref="IScrollInfo.MakeVisible"/>
src\Framework\MS\Internal\Documents\TextBoxView.cs (1)
230/// <see cref="IScrollInfo.MakeVisible"/>
src\Framework\System\Windows\Controls\FlowDocumentScrollViewer.cs (1)
1622result = scrollInfo.MakeVisible(visual, rectangle);
src\Framework\System\Windows\Controls\Primitives\ScrollContentPresenter.cs (2)
188/// ScrollContentPresenter implementation of <seealso cref="IScrollInfo.MakeVisible" />. 553/// ScrollContentPresenter implementation of <seealso cref="IScrollInfo.MakeVisible" />.
src\Framework\System\Windows\Controls\ScrollViewer.cs (1)
2316rcNew = isi.MakeVisible(child, targetRect);
src\Framework\System\Windows\Controls\Stack.cs (1)
238/// StackPanel implementation of <seealso cref="IScrollInfo.MakeVisible" />.
src\Framework\System\Windows\Controls\VirtualizingStackPanel.cs (1)
1427/// VirtualizingStackPanel implementation of <seealso cref="IScrollInfo.MakeVisible" />.