1 implementation of StartAt
PresentationFramework (1)
System\Windows\Controls\ItemContainerGenerator.cs (1)
204IDisposable IItemContainerGenerator.StartAt(GeneratorPosition position, GeneratorDirection direction, bool allowStartAtRealizedItem)
13 references to StartAt
PresentationFramework (11)
System\Windows\Controls\DataGridCellsPanel.cs (4)
540generatorState = generator.StartAt(IndexToGeneratorPositionForStart(generator, childIndex, out childIndex), GeneratorDirection.Forward, true); 595using (generator.StartAt(startPos, GeneratorDirection.Forward, true)) 837using (generator.StartAt(IndexToGeneratorPositionForStart(generator, childIndex, out childIndex), GeneratorDirection.Forward, true)) 969using (((IItemContainerGenerator)generator).StartAt(IndexToGeneratorPositionForStart(generator, childIndex, out childIndex), GeneratorDirection.Forward, true))
System\Windows\Controls\ItemContainerGenerator.cs (1)
193return ((IItemContainerGenerator)this).StartAt(position, direction, false);
System\Windows\Controls\Panel.cs (1)
744using (generator.StartAt(pos, GeneratorDirection.Forward, true))
System\Windows\Controls\Primitives\ToolBarPanel.cs (1)
456using (generator.StartAt(pos, GeneratorDirection.Forward, true))
System\Windows\Controls\VirtualizingStackPanel.cs (4)
1688using (generator.StartAt(position, GeneratorDirection.Forward, true)) 2411using (generator.StartAt(startPos, GeneratorDirection.Backward, true)) 2714using (generator.StartAt(startPos, GeneratorDirection.Forward, true)) 8947using (Generator.StartAt(args.Position, GeneratorDirection.Forward, true))
System.Windows.Controls.Ribbon (2)
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonQuickAccessToolBarPanel.cs (2)
35using (Generator.StartAt(args.Position, GeneratorDirection.Forward, true)) 140using (Generator.StartAt(startPos, GeneratorDirection.Forward, true))