1 type derived from FlowDocumentScrollViewer
PresentationFramework (1)
MS\Internal\Documents\IFlowDocumentViewer.cs (1)
130
internal class ReaderScrollViewer :
FlowDocumentScrollViewer
, IFlowDocumentViewer
2 instantiations of FlowDocumentScrollViewer
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
4720
DefaultConstructor = delegate () { return new System.Windows.Controls.
FlowDocumentScrollViewer
(); },
System\Windows\Markup\KnownTypes.cs (1)
1267
case KnownElements.FlowDocumentScrollViewer: o = new System.Windows.Controls.
FlowDocumentScrollViewer
(); break;
108 references to FlowDocumentScrollViewer
PresentationFramework (108)
MS\Internal\Annotations\Anchoring\TextSelectionHelper.cs (6)
175
FlowDocumentScrollViewer
scrollViewer = parent as
FlowDocumentScrollViewer
;
391
FlowDocumentScrollViewer
scrollViewer = PathNode.GetParent(content) as
FlowDocumentScrollViewer
;
429
FlowDocumentScrollViewer
scrollViewer = PathNode.GetParent(content) as
FlowDocumentScrollViewer
;
MS\Internal\LayoutDump.cs (3)
453
AddUIElementDumpHandler(typeof(
FlowDocumentScrollViewer
), new DumpCustomUIElement(DumpFlowDocumentScrollViewer));
513
FlowDocumentScrollViewer
fdsv = element as
FlowDocumentScrollViewer
;
System\Windows\Annotations\AnnotationHelper.cs (2)
1091
FlowDocumentScrollViewer
scrollViewer = service.Root as
FlowDocumentScrollViewer
;
System\Windows\Annotations\AnnotationService.cs (11)
58
CommandManager.RegisterClassCommandBinding(typeof(
FlowDocumentScrollViewer
), new CommandBinding(CreateHighlightCommand, AnnotationHelper.OnCreateHighlightCommand, AnnotationHelper.OnQueryCreateHighlightCommand));
60
CommandManager.RegisterClassCommandBinding(typeof(
FlowDocumentScrollViewer
), new CommandBinding(CreateTextStickyNoteCommand, AnnotationHelper.OnCreateTextStickyNoteCommand, AnnotationHelper.OnQueryCreateTextStickyNoteCommand));
62
CommandManager.RegisterClassCommandBinding(typeof(
FlowDocumentScrollViewer
), new CommandBinding(CreateInkStickyNoteCommand, AnnotationHelper.OnCreateInkStickyNoteCommand, AnnotationHelper.OnQueryCreateInkStickyNoteCommand));
64
CommandManager.RegisterClassCommandBinding(typeof(
FlowDocumentScrollViewer
), new CommandBinding(ClearHighlightsCommand, AnnotationHelper.OnClearHighlightsCommand, AnnotationHelper.OnQueryClearHighlightsCommand));
66
CommandManager.RegisterClassCommandBinding(typeof(
FlowDocumentScrollViewer
), new CommandBinding(DeleteStickyNotesCommand, AnnotationHelper.OnDeleteStickyNotesCommand, AnnotationHelper.OnQueryDeleteStickyNotesCommand));
68
CommandManager.RegisterClassCommandBinding(typeof(
FlowDocumentScrollViewer
), new CommandBinding(DeleteAnnotationsCommand, AnnotationHelper.OnDeleteAnnotationsCommand, AnnotationHelper.OnQueryDeleteAnnotationsCommand));
102
public AnnotationService(
FlowDocumentScrollViewer
viewer)
316
public static AnnotationService GetService(
FlowDocumentScrollViewer
viewer)
1086
FlowDocumentScrollViewer
docScrollViewer = root as
FlowDocumentScrollViewer
;
1545
else if ((viewer is
FlowDocumentScrollViewer
) || (viewer is FlowDocumentReader))
System\Windows\Automation\Peers\FlowDocumentScrollViewerAutomationPeer.cs (4)
27
public FlowDocumentScrollViewerAutomationPeer(
FlowDocumentScrollViewer
owner)
40
FlowDocumentScrollViewer
owner = (
FlowDocumentScrollViewer
)Owner;
90
FlowDocument document = ((
FlowDocumentScrollViewer
)Owner).Document;
System\Windows\Controls\FlowDocumentScrollViewer.cs (71)
54
typeof(
FlowDocumentScrollViewer
),
57
_dType = DependencyObjectType.FromSystemTypeInternal(typeof(
FlowDocumentScrollViewer
));
59
TextBoxBase.SelectionBrushProperty.OverrideMetadata(typeof(
FlowDocumentScrollViewer
),
61
TextBoxBase.SelectionOpacityProperty.OverrideMetadata(typeof(
FlowDocumentScrollViewer
),
66
EventManager.RegisterClassHandler(typeof(
FlowDocumentScrollViewer
), RequestBringIntoViewEvent, new RequestBringIntoViewEventHandler(HandleRequestBringIntoView));
67
EventManager.RegisterClassHandler(typeof(
FlowDocumentScrollViewer
), Keyboard.KeyDownEvent, new KeyEventHandler(KeyDownHandler), true);
357
typeof(
FlowDocumentScrollViewer
),
367
typeof(
FlowDocumentScrollViewer
),
378
typeof(
FlowDocumentScrollViewer
),
389
typeof(
FlowDocumentScrollViewer
),
399
typeof(
FlowDocumentScrollViewer
));
408
typeof(
FlowDocumentScrollViewer
),
423
typeof(
FlowDocumentScrollViewer
),
438
typeof(
FlowDocumentScrollViewer
),
450
typeof(
FlowDocumentScrollViewer
),
460
typeof(
FlowDocumentScrollViewer
),
468
typeof(
FlowDocumentScrollViewer
),
475
TextBoxBase.SelectionBrushProperty.AddOwner(typeof(
FlowDocumentScrollViewer
));
481
TextBoxBase.SelectionOpacityProperty.AddOwner(typeof(
FlowDocumentScrollViewer
));
487
TextBoxBase.IsSelectionActiveProperty.AddOwner(typeof(
FlowDocumentScrollViewer
));
493
TextBoxBase.IsInactiveSelectionHighlightEnabledProperty.AddOwner(typeof(
FlowDocumentScrollViewer
));
1321
_commandLineDown = new RoutedUICommand(String.Empty, "FDSV_LineDown", typeof(
FlowDocumentScrollViewer
));
1322
_commandLineUp = new RoutedUICommand(String.Empty, "FDSV_LineUp", typeof(
FlowDocumentScrollViewer
));
1323
_commandLineLeft = new RoutedUICommand(String.Empty, "FDSV_LineLeft", typeof(
FlowDocumentScrollViewer
));
1324
_commandLineRight = new RoutedUICommand(String.Empty, "FDSV_LineRight", typeof(
FlowDocumentScrollViewer
));
1327
TextEditor.RegisterCommandHandlers(typeof(
FlowDocumentScrollViewer
), /*acceptsRichContent:*/true, /*readOnly:*/!IsEditingEnabled, /*registerEventListeners*/true);
1330
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), ApplicationCommands.Find,
1334
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), ApplicationCommands.Print,
1338
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), ApplicationCommands.CancelPrint,
1342
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.PreviousPage,
1346
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.NextPage,
1350
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.FirstPage,
1354
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.LastPage,
1358
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.IncreaseZoom,
1362
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.DecreaseZoom,
1366
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), _commandLineDown,
1370
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), _commandLineUp,
1374
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), _commandLineLeft,
1378
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), _commandLineRight,
1389
FlowDocumentScrollViewer
viewer = target as
FlowDocumentScrollViewer
;
1431
FlowDocumentScrollViewer
viewer = target as
FlowDocumentScrollViewer
;
1549
DocumentViewerHelper.KeyDownHelper(e, ((
FlowDocumentScrollViewer
)sender)._findToolBarHost);
1589
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1590
((
FlowDocumentScrollViewer
)d).DocumentChanged((FlowDocument)e.OldValue, (FlowDocument)e.NewValue);
1601
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1602
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1619
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1620
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1644
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1645
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1656
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1657
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1668
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1669
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1694
if (sender != null && sender is
FlowDocumentScrollViewer
)
1696
((
FlowDocumentScrollViewer
)sender).HandleRequestBringIntoView(args);
1705
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1706
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1716
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1717
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1730
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
System\Windows\Controls\Primitives\BulletDecorator.cs (4)
418
private
FlowDocumentScrollViewer
FindFlowDocumentScrollViewer(Visual root)
420
FlowDocumentScrollViewer
text = root as
FlowDocumentScrollViewer
;
428
return VisualTreeHelper.GetChild(cp, 0) as
FlowDocumentScrollViewer
;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
306
case 212: t = () => typeof(
FlowDocumentScrollViewer
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
2507
Type type = typeof(System.Windows.Controls.
FlowDocumentScrollViewer
);
2508
DependencyProperty dp = System.Windows.Controls.
FlowDocumentScrollViewer
.DocumentProperty;
2510
this.GetXamlType(typeof(System.Windows.Controls.
FlowDocumentScrollViewer
)), // DeclaringType
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
4717
typeof(System.Windows.Controls.
FlowDocumentScrollViewer
),
System\Windows\Markup\KnownTypes.cs (2)
1762
return System.Windows.Controls.
FlowDocumentScrollViewer
.DocumentProperty;
5760
case KnownElements.FlowDocumentScrollViewer: t = typeof(System.Windows.Controls.
FlowDocumentScrollViewer
); break;