1 implementation of StartAt
PresentationFramework (1)
src\Framework\System\Windows\Controls\ItemContainerGenerator.cs (1)
213IDisposable IItemContainerGenerator.StartAt(GeneratorPosition position, GeneratorDirection direction, bool allowStartAtRealizedItem)
11 references to StartAt
PresentationFramework (11)
src\Framework\System\Windows\Controls\DataGridCellsPanel.cs (4)
548generatorState = generator.StartAt(IndexToGeneratorPositionForStart(generator, childIndex, out childIndex), GeneratorDirection.Forward, true); 603using (generator.StartAt(startPos, GeneratorDirection.Forward, true)) 845using (generator.StartAt(IndexToGeneratorPositionForStart(generator, childIndex, out childIndex), GeneratorDirection.Forward, true)) 977using (((IItemContainerGenerator)generator).StartAt(IndexToGeneratorPositionForStart(generator, childIndex, out childIndex), GeneratorDirection.Forward, true))
src\Framework\System\Windows\Controls\ItemContainerGenerator.cs (1)
202return ((IItemContainerGenerator)this).StartAt(position, direction, false);
src\Framework\System\Windows\Controls\Panel.cs (1)
756using (generator.StartAt(pos, GeneratorDirection.Forward, true))
src\Framework\System\Windows\Controls\Primitives\ToolBarPanel.cs (1)
471using (generator.StartAt(pos, GeneratorDirection.Forward, true))
src\Framework\System\Windows\Controls\VirtualizingStackPanel.cs (4)
1655using (generator.StartAt(position, GeneratorDirection.Forward, true)) 2378using (generator.StartAt(startPos, GeneratorDirection.Backward, true)) 2680using (generator.StartAt(startPos, GeneratorDirection.Forward, true)) 8816using (Generator.StartAt(args.Position, GeneratorDirection.Forward, true))