1 implementation of StartAt
PresentationFramework (1)
System\Windows\Controls\ItemContainerGenerator.cs (1)
205IDisposable IItemContainerGenerator.StartAt(GeneratorPosition position, GeneratorDirection direction, bool allowStartAtRealizedItem)
13 references to StartAt
PresentationFramework (11)
System\Windows\Controls\DataGridCellsPanel.cs (4)
542generatorState = generator.StartAt(IndexToGeneratorPositionForStart(generator, childIndex, out childIndex), GeneratorDirection.Forward, true); 597using (generator.StartAt(startPos, GeneratorDirection.Forward, true)) 839using (generator.StartAt(IndexToGeneratorPositionForStart(generator, childIndex, out childIndex), GeneratorDirection.Forward, true)) 971using (((IItemContainerGenerator)generator).StartAt(IndexToGeneratorPositionForStart(generator, childIndex, out childIndex), GeneratorDirection.Forward, true))
System\Windows\Controls\ItemContainerGenerator.cs (1)
194return ((IItemContainerGenerator)this).StartAt(position, direction, false);
System\Windows\Controls\Panel.cs (1)
745using (generator.StartAt(pos, GeneratorDirection.Forward, true))
System\Windows\Controls\Primitives\ToolBarPanel.cs (1)
461using (generator.StartAt(pos, GeneratorDirection.Forward, true))
System\Windows\Controls\VirtualizingStackPanel.cs (4)
1699using (generator.StartAt(position, GeneratorDirection.Forward, true)) 2423using (generator.StartAt(startPos, GeneratorDirection.Backward, true)) 2726using (generator.StartAt(startPos, GeneratorDirection.Forward, true)) 8969using (Generator.StartAt(args.Position, GeneratorDirection.Forward, true))
System.Windows.Controls.Ribbon (2)
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonQuickAccessToolBarPanel.cs (2)
36using (Generator.StartAt(args.Position, GeneratorDirection.Forward, true)) 141using (Generator.StartAt(startPos, GeneratorDirection.Forward, true))