1 implementation of StartAt
PresentationFramework (1)
System\Windows\Controls\ItemContainerGenerator.cs (1)
211IDisposable IItemContainerGenerator.StartAt(GeneratorPosition position, GeneratorDirection direction, bool allowStartAtRealizedItem)
13 references to StartAt
PresentationFramework (11)
System\Windows\Controls\DataGridCellsPanel.cs (4)
546generatorState = generator.StartAt(IndexToGeneratorPositionForStart(generator, childIndex, out childIndex), GeneratorDirection.Forward, true); 601using (generator.StartAt(startPos, GeneratorDirection.Forward, true)) 843using (generator.StartAt(IndexToGeneratorPositionForStart(generator, childIndex, out childIndex), GeneratorDirection.Forward, true)) 975using (((IItemContainerGenerator)generator).StartAt(IndexToGeneratorPositionForStart(generator, childIndex, out childIndex), GeneratorDirection.Forward, true))
System\Windows\Controls\ItemContainerGenerator.cs (1)
200return ((IItemContainerGenerator)this).StartAt(position, direction, false);
System\Windows\Controls\Panel.cs (1)
752using (generator.StartAt(pos, GeneratorDirection.Forward, true))
System\Windows\Controls\Primitives\ToolBarPanel.cs (1)
470using (generator.StartAt(pos, GeneratorDirection.Forward, true))
System\Windows\Controls\VirtualizingStackPanel.cs (4)
1704using (generator.StartAt(position, GeneratorDirection.Forward, true)) 2428using (generator.StartAt(startPos, GeneratorDirection.Backward, true)) 2731using (generator.StartAt(startPos, GeneratorDirection.Forward, true)) 8974using (Generator.StartAt(args.Position, GeneratorDirection.Forward, true))
System.Windows.Controls.Ribbon (2)
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonQuickAccessToolBarPanel.cs (2)
42using (Generator.StartAt(args.Position, GeneratorDirection.Forward, true)) 147using (Generator.StartAt(startPos, GeneratorDirection.Forward, true))