1 type derived from FlowDocumentScrollViewer
PresentationFramework (1)
MS\Internal\Documents\IFlowDocumentViewer.cs (1)
130internal class ReaderScrollViewer : FlowDocumentScrollViewer, IFlowDocumentViewer
2 instantiations of FlowDocumentScrollViewer
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
4361bamlType.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)
175FlowDocumentScrollViewer scrollViewer = parent as FlowDocumentScrollViewer; 391FlowDocumentScrollViewer scrollViewer = PathNode.GetParent(content) as FlowDocumentScrollViewer; 429FlowDocumentScrollViewer scrollViewer = PathNode.GetParent(content) as FlowDocumentScrollViewer;
MS\Internal\LayoutDump.cs (3)
451AddUIElementDumpHandler(typeof(FlowDocumentScrollViewer), new DumpCustomUIElement(DumpFlowDocumentScrollViewer)); 511FlowDocumentScrollViewer fdsv = element as FlowDocumentScrollViewer;
System\Windows\Annotations\AnnotationHelper.cs (2)
1093FlowDocumentScrollViewer scrollViewer = service.Root as FlowDocumentScrollViewer;
System\Windows\Annotations\AnnotationService.cs (11)
59CommandManager.RegisterClassCommandBinding(typeof(FlowDocumentScrollViewer), new CommandBinding(CreateHighlightCommand, AnnotationHelper.OnCreateHighlightCommand, AnnotationHelper.OnQueryCreateHighlightCommand)); 61CommandManager.RegisterClassCommandBinding(typeof(FlowDocumentScrollViewer), new CommandBinding(CreateTextStickyNoteCommand, AnnotationHelper.OnCreateTextStickyNoteCommand, AnnotationHelper.OnQueryCreateTextStickyNoteCommand)); 63CommandManager.RegisterClassCommandBinding(typeof(FlowDocumentScrollViewer), new CommandBinding(CreateInkStickyNoteCommand, AnnotationHelper.OnCreateInkStickyNoteCommand, AnnotationHelper.OnQueryCreateInkStickyNoteCommand)); 65CommandManager.RegisterClassCommandBinding(typeof(FlowDocumentScrollViewer), new CommandBinding(ClearHighlightsCommand, AnnotationHelper.OnClearHighlightsCommand, AnnotationHelper.OnQueryClearHighlightsCommand)); 67CommandManager.RegisterClassCommandBinding(typeof(FlowDocumentScrollViewer), new CommandBinding(DeleteStickyNotesCommand, AnnotationHelper.OnDeleteStickyNotesCommand, AnnotationHelper.OnQueryDeleteStickyNotesCommand)); 69CommandManager.RegisterClassCommandBinding(typeof(FlowDocumentScrollViewer), new CommandBinding(DeleteAnnotationsCommand, AnnotationHelper.OnDeleteAnnotationsCommand, AnnotationHelper.OnQueryDeleteAnnotationsCommand)); 103public AnnotationService(FlowDocumentScrollViewer viewer) 317public static AnnotationService GetService(FlowDocumentScrollViewer viewer) 1091FlowDocumentScrollViewer docScrollViewer = root as FlowDocumentScrollViewer; 1550else if ((viewer is FlowDocumentScrollViewer) || (viewer is FlowDocumentReader))
System\Windows\Automation\Peers\FlowDocumentScrollViewerAutomationPeer.cs (4)
27public FlowDocumentScrollViewerAutomationPeer(FlowDocumentScrollViewer owner) 40FlowDocumentScrollViewer owner = (FlowDocumentScrollViewer)Owner; 90FlowDocument document = ((FlowDocumentScrollViewer)Owner).Document;
System\Windows\Controls\FlowDocumentScrollViewer.cs (71)
54typeof(FlowDocumentScrollViewer), 57_dType = DependencyObjectType.FromSystemTypeInternal(typeof(FlowDocumentScrollViewer)); 59TextBoxBase.SelectionBrushProperty.OverrideMetadata(typeof(FlowDocumentScrollViewer), 61TextBoxBase.SelectionOpacityProperty.OverrideMetadata(typeof(FlowDocumentScrollViewer), 66EventManager.RegisterClassHandler(typeof(FlowDocumentScrollViewer), RequestBringIntoViewEvent, new RequestBringIntoViewEventHandler(HandleRequestBringIntoView)); 67EventManager.RegisterClassHandler(typeof(FlowDocumentScrollViewer), Keyboard.KeyDownEvent, new KeyEventHandler(KeyDownHandler), true); 357typeof(FlowDocumentScrollViewer), 367typeof(FlowDocumentScrollViewer), 378typeof(FlowDocumentScrollViewer), 389typeof(FlowDocumentScrollViewer), 399typeof(FlowDocumentScrollViewer)); 408typeof(FlowDocumentScrollViewer), 423typeof(FlowDocumentScrollViewer), 438typeof(FlowDocumentScrollViewer), 450typeof(FlowDocumentScrollViewer), 460typeof(FlowDocumentScrollViewer), 468typeof(FlowDocumentScrollViewer), 475TextBoxBase.SelectionBrushProperty.AddOwner(typeof(FlowDocumentScrollViewer)); 481TextBoxBase.SelectionOpacityProperty.AddOwner(typeof(FlowDocumentScrollViewer)); 487TextBoxBase.IsSelectionActiveProperty.AddOwner(typeof(FlowDocumentScrollViewer)); 493TextBoxBase.IsInactiveSelectionHighlightEnabledProperty.AddOwner(typeof(FlowDocumentScrollViewer)); 1330_commandLineDown = new RoutedUICommand(String.Empty, "FDSV_LineDown", typeof(FlowDocumentScrollViewer)); 1331_commandLineUp = new RoutedUICommand(String.Empty, "FDSV_LineUp", typeof(FlowDocumentScrollViewer)); 1332_commandLineLeft = new RoutedUICommand(String.Empty, "FDSV_LineLeft", typeof(FlowDocumentScrollViewer)); 1333_commandLineRight = new RoutedUICommand(String.Empty, "FDSV_LineRight", typeof(FlowDocumentScrollViewer)); 1336TextEditor.RegisterCommandHandlers(typeof(FlowDocumentScrollViewer), /*acceptsRichContent:*/true, /*readOnly:*/!IsEditingEnabled, /*registerEventListeners*/true); 1339CommandHelpers.RegisterCommandHandler(typeof(FlowDocumentScrollViewer), ApplicationCommands.Find, 1343CommandHelpers.RegisterCommandHandler(typeof(FlowDocumentScrollViewer), ApplicationCommands.Print, 1347CommandHelpers.RegisterCommandHandler(typeof(FlowDocumentScrollViewer), ApplicationCommands.CancelPrint, 1351CommandHelpers.RegisterCommandHandler(typeof(FlowDocumentScrollViewer), NavigationCommands.PreviousPage, 1355CommandHelpers.RegisterCommandHandler(typeof(FlowDocumentScrollViewer), NavigationCommands.NextPage, 1359CommandHelpers.RegisterCommandHandler(typeof(FlowDocumentScrollViewer), NavigationCommands.FirstPage, 1363CommandHelpers.RegisterCommandHandler(typeof(FlowDocumentScrollViewer), NavigationCommands.LastPage, 1367CommandHelpers.RegisterCommandHandler(typeof(FlowDocumentScrollViewer), NavigationCommands.IncreaseZoom, 1371CommandHelpers.RegisterCommandHandler(typeof(FlowDocumentScrollViewer), NavigationCommands.DecreaseZoom, 1375CommandHelpers.RegisterCommandHandler(typeof(FlowDocumentScrollViewer), _commandLineDown, 1379CommandHelpers.RegisterCommandHandler(typeof(FlowDocumentScrollViewer), _commandLineUp, 1383CommandHelpers.RegisterCommandHandler(typeof(FlowDocumentScrollViewer), _commandLineLeft, 1387CommandHelpers.RegisterCommandHandler(typeof(FlowDocumentScrollViewer), _commandLineRight, 1398FlowDocumentScrollViewer viewer = target as FlowDocumentScrollViewer; 1440FlowDocumentScrollViewer viewer = target as FlowDocumentScrollViewer; 1582DocumentViewerHelper.KeyDownHelper(e, ((FlowDocumentScrollViewer)sender)._findToolBarHost); 1622Invariant.Assert(d != null && d is FlowDocumentScrollViewer); 1623((FlowDocumentScrollViewer)d).DocumentChanged((FlowDocument)e.OldValue, (FlowDocument)e.NewValue); 1634Invariant.Assert(d != null && d is FlowDocumentScrollViewer); 1635FlowDocumentScrollViewer viewer = (FlowDocumentScrollViewer)d; 1652Invariant.Assert(d != null && d is FlowDocumentScrollViewer); 1653FlowDocumentScrollViewer viewer = (FlowDocumentScrollViewer)d; 1677Invariant.Assert(d != null && d is FlowDocumentScrollViewer); 1678FlowDocumentScrollViewer viewer = (FlowDocumentScrollViewer)d; 1689Invariant.Assert(d != null && d is FlowDocumentScrollViewer); 1690FlowDocumentScrollViewer viewer = (FlowDocumentScrollViewer)d; 1701Invariant.Assert(d != null && d is FlowDocumentScrollViewer); 1702FlowDocumentScrollViewer viewer = (FlowDocumentScrollViewer)d; 1727if (sender != null && sender is FlowDocumentScrollViewer) 1729((FlowDocumentScrollViewer)sender).HandleRequestBringIntoView(args); 1738Invariant.Assert(d != null && d is FlowDocumentScrollViewer); 1739FlowDocumentScrollViewer viewer = (FlowDocumentScrollViewer)d; 1749Invariant.Assert(d != null && d is FlowDocumentScrollViewer); 1750FlowDocumentScrollViewer viewer = (FlowDocumentScrollViewer)d; 1763FlowDocumentScrollViewer viewer = (FlowDocumentScrollViewer)d;
System\Windows\Controls\Primitives\BulletDecorator.cs (4)
418private FlowDocumentScrollViewer FindFlowDocumentScrollViewer(Visual root) 420FlowDocumentScrollViewer text = root as FlowDocumentScrollViewer; 428return VisualTreeHelper.GetChild(cp, 0) as FlowDocumentScrollViewer;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
306case 212: t = () => typeof(FlowDocumentScrollViewer); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
2443Type type = typeof(System.Windows.Controls.FlowDocumentScrollViewer); 2444DependencyProperty dp = System.Windows.Controls.FlowDocumentScrollViewer.DocumentProperty; 2446this.GetXamlType(typeof(System.Windows.Controls.FlowDocumentScrollViewer)), // DeclaringType
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
4359typeof(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;