1 type derived from FlowDocumentScrollViewer
PresentationFramework (1)
MS\Internal\Documents\IFlowDocumentViewer.cs (1)
133internal class ReaderScrollViewer : FlowDocumentScrollViewer, IFlowDocumentViewer
2 instantiations of FlowDocumentScrollViewer
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
4363bamlType.DefaultConstructor = delegate() { return new System.Windows.Controls.FlowDocumentScrollViewer(); };
System\Windows\Markup\KnownTypes.cs (1)
1273case KnownElements.FlowDocumentScrollViewer: o = new System.Windows.Controls.FlowDocumentScrollViewer(); break;
108 references to FlowDocumentScrollViewer
PresentationFramework (108)
MS\Internal\Annotations\Anchoring\TextSelectionHelper.cs (6)
184FlowDocumentScrollViewer scrollViewer = parent as FlowDocumentScrollViewer; 400FlowDocumentScrollViewer scrollViewer = PathNode.GetParent(content) as FlowDocumentScrollViewer; 438FlowDocumentScrollViewer scrollViewer = PathNode.GetParent(content) as FlowDocumentScrollViewer;
MS\Internal\LayoutDump.cs (3)
454AddUIElementDumpHandler(typeof(FlowDocumentScrollViewer), new DumpCustomUIElement(DumpFlowDocumentScrollViewer)); 514FlowDocumentScrollViewer fdsv = element as FlowDocumentScrollViewer;
System\Windows\Annotations\AnnotationHelper.cs (2)
1105FlowDocumentScrollViewer scrollViewer = service.Root as FlowDocumentScrollViewer;
System\Windows\Annotations\AnnotationService.cs (11)
71CommandManager.RegisterClassCommandBinding(typeof(FlowDocumentScrollViewer), new CommandBinding(CreateHighlightCommand, AnnotationHelper.OnCreateHighlightCommand, AnnotationHelper.OnQueryCreateHighlightCommand)); 73CommandManager.RegisterClassCommandBinding(typeof(FlowDocumentScrollViewer), new CommandBinding(CreateTextStickyNoteCommand, AnnotationHelper.OnCreateTextStickyNoteCommand, AnnotationHelper.OnQueryCreateTextStickyNoteCommand)); 75CommandManager.RegisterClassCommandBinding(typeof(FlowDocumentScrollViewer), new CommandBinding(CreateInkStickyNoteCommand, AnnotationHelper.OnCreateInkStickyNoteCommand, AnnotationHelper.OnQueryCreateInkStickyNoteCommand)); 77CommandManager.RegisterClassCommandBinding(typeof(FlowDocumentScrollViewer), new CommandBinding(ClearHighlightsCommand, AnnotationHelper.OnClearHighlightsCommand, AnnotationHelper.OnQueryClearHighlightsCommand)); 79CommandManager.RegisterClassCommandBinding(typeof(FlowDocumentScrollViewer), new CommandBinding(DeleteStickyNotesCommand, AnnotationHelper.OnDeleteStickyNotesCommand, AnnotationHelper.OnQueryDeleteStickyNotesCommand)); 81CommandManager.RegisterClassCommandBinding(typeof(FlowDocumentScrollViewer), new CommandBinding(DeleteAnnotationsCommand, AnnotationHelper.OnDeleteAnnotationsCommand, AnnotationHelper.OnQueryDeleteAnnotationsCommand)); 115public AnnotationService(FlowDocumentScrollViewer viewer) 329public static AnnotationService GetService(FlowDocumentScrollViewer viewer) 1103FlowDocumentScrollViewer docScrollViewer = root as FlowDocumentScrollViewer; 1562else if ((viewer is FlowDocumentScrollViewer) || (viewer is FlowDocumentReader))
System\Windows\Automation\Peers\FlowDocumentScrollViewerAutomationPeer.cs (4)
28public FlowDocumentScrollViewerAutomationPeer(FlowDocumentScrollViewer owner) 41FlowDocumentScrollViewer owner = (FlowDocumentScrollViewer)Owner; 91FlowDocument document = ((FlowDocumentScrollViewer)Owner).Document;
System\Windows\Controls\FlowDocumentScrollViewer.cs (71)
57typeof(FlowDocumentScrollViewer), 60_dType = DependencyObjectType.FromSystemTypeInternal(typeof(FlowDocumentScrollViewer)); 62TextBoxBase.SelectionBrushProperty.OverrideMetadata(typeof(FlowDocumentScrollViewer), 64TextBoxBase.SelectionOpacityProperty.OverrideMetadata(typeof(FlowDocumentScrollViewer), 69EventManager.RegisterClassHandler(typeof(FlowDocumentScrollViewer), RequestBringIntoViewEvent, new RequestBringIntoViewEventHandler(HandleRequestBringIntoView)); 70EventManager.RegisterClassHandler(typeof(FlowDocumentScrollViewer), Keyboard.KeyDownEvent, new KeyEventHandler(KeyDownHandler), true); 360typeof(FlowDocumentScrollViewer), 370typeof(FlowDocumentScrollViewer), 381typeof(FlowDocumentScrollViewer), 392typeof(FlowDocumentScrollViewer), 402typeof(FlowDocumentScrollViewer)); 411typeof(FlowDocumentScrollViewer), 426typeof(FlowDocumentScrollViewer), 441typeof(FlowDocumentScrollViewer), 453typeof(FlowDocumentScrollViewer), 463typeof(FlowDocumentScrollViewer), 471typeof(FlowDocumentScrollViewer), 478TextBoxBase.SelectionBrushProperty.AddOwner(typeof(FlowDocumentScrollViewer)); 484TextBoxBase.SelectionOpacityProperty.AddOwner(typeof(FlowDocumentScrollViewer)); 490TextBoxBase.IsSelectionActiveProperty.AddOwner(typeof(FlowDocumentScrollViewer)); 496TextBoxBase.IsInactiveSelectionHighlightEnabledProperty.AddOwner(typeof(FlowDocumentScrollViewer)); 1333_commandLineDown = new RoutedUICommand(String.Empty, "FDSV_LineDown", typeof(FlowDocumentScrollViewer)); 1334_commandLineUp = new RoutedUICommand(String.Empty, "FDSV_LineUp", typeof(FlowDocumentScrollViewer)); 1335_commandLineLeft = new RoutedUICommand(String.Empty, "FDSV_LineLeft", typeof(FlowDocumentScrollViewer)); 1336_commandLineRight = new RoutedUICommand(String.Empty, "FDSV_LineRight", typeof(FlowDocumentScrollViewer)); 1339TextEditor.RegisterCommandHandlers(typeof(FlowDocumentScrollViewer), /*acceptsRichContent:*/true, /*readOnly:*/!IsEditingEnabled, /*registerEventListeners*/true); 1342CommandHelpers.RegisterCommandHandler(typeof(FlowDocumentScrollViewer), ApplicationCommands.Find, 1346CommandHelpers.RegisterCommandHandler(typeof(FlowDocumentScrollViewer), ApplicationCommands.Print, 1350CommandHelpers.RegisterCommandHandler(typeof(FlowDocumentScrollViewer), ApplicationCommands.CancelPrint, 1354CommandHelpers.RegisterCommandHandler(typeof(FlowDocumentScrollViewer), NavigationCommands.PreviousPage, 1358CommandHelpers.RegisterCommandHandler(typeof(FlowDocumentScrollViewer), NavigationCommands.NextPage, 1362CommandHelpers.RegisterCommandHandler(typeof(FlowDocumentScrollViewer), NavigationCommands.FirstPage, 1366CommandHelpers.RegisterCommandHandler(typeof(FlowDocumentScrollViewer), NavigationCommands.LastPage, 1370CommandHelpers.RegisterCommandHandler(typeof(FlowDocumentScrollViewer), NavigationCommands.IncreaseZoom, 1374CommandHelpers.RegisterCommandHandler(typeof(FlowDocumentScrollViewer), NavigationCommands.DecreaseZoom, 1378CommandHelpers.RegisterCommandHandler(typeof(FlowDocumentScrollViewer), _commandLineDown, 1382CommandHelpers.RegisterCommandHandler(typeof(FlowDocumentScrollViewer), _commandLineUp, 1386CommandHelpers.RegisterCommandHandler(typeof(FlowDocumentScrollViewer), _commandLineLeft, 1390CommandHelpers.RegisterCommandHandler(typeof(FlowDocumentScrollViewer), _commandLineRight, 1401FlowDocumentScrollViewer viewer = target as FlowDocumentScrollViewer; 1443FlowDocumentScrollViewer viewer = target as FlowDocumentScrollViewer; 1585DocumentViewerHelper.KeyDownHelper(e, ((FlowDocumentScrollViewer)sender)._findToolBarHost); 1625Invariant.Assert(d != null && d is FlowDocumentScrollViewer); 1626((FlowDocumentScrollViewer)d).DocumentChanged((FlowDocument)e.OldValue, (FlowDocument)e.NewValue); 1637Invariant.Assert(d != null && d is FlowDocumentScrollViewer); 1638FlowDocumentScrollViewer viewer = (FlowDocumentScrollViewer)d; 1655Invariant.Assert(d != null && d is FlowDocumentScrollViewer); 1656FlowDocumentScrollViewer viewer = (FlowDocumentScrollViewer)d; 1680Invariant.Assert(d != null && d is FlowDocumentScrollViewer); 1681FlowDocumentScrollViewer viewer = (FlowDocumentScrollViewer)d; 1692Invariant.Assert(d != null && d is FlowDocumentScrollViewer); 1693FlowDocumentScrollViewer viewer = (FlowDocumentScrollViewer)d; 1704Invariant.Assert(d != null && d is FlowDocumentScrollViewer); 1705FlowDocumentScrollViewer viewer = (FlowDocumentScrollViewer)d; 1730if (sender != null && sender is FlowDocumentScrollViewer) 1732((FlowDocumentScrollViewer)sender).HandleRequestBringIntoView(args); 1741Invariant.Assert(d != null && d is FlowDocumentScrollViewer); 1742FlowDocumentScrollViewer viewer = (FlowDocumentScrollViewer)d; 1752Invariant.Assert(d != null && d is FlowDocumentScrollViewer); 1753FlowDocumentScrollViewer viewer = (FlowDocumentScrollViewer)d; 1766FlowDocumentScrollViewer viewer = (FlowDocumentScrollViewer)d;
System\Windows\Controls\Primitives\BulletDecorator.cs (4)
424private FlowDocumentScrollViewer FindFlowDocumentScrollViewer(Visual root) 426FlowDocumentScrollViewer text = root as FlowDocumentScrollViewer; 434return VisualTreeHelper.GetChild(cp, 0) as FlowDocumentScrollViewer;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
308case 212: t = () => typeof(FlowDocumentScrollViewer); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
2445Type type = typeof(System.Windows.Controls.FlowDocumentScrollViewer); 2446DependencyProperty dp = System.Windows.Controls.FlowDocumentScrollViewer.DocumentProperty; 2448this.GetXamlType(typeof(System.Windows.Controls.FlowDocumentScrollViewer)), // DeclaringType
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
4361typeof(System.Windows.Controls.FlowDocumentScrollViewer),
System\Windows\Markup\KnownTypes.cs (2)
1768return System.Windows.Controls.FlowDocumentScrollViewer.DocumentProperty; 5766case KnownElements.FlowDocumentScrollViewer: t = typeof(System.Windows.Controls.FlowDocumentScrollViewer); break;