1 type derived from FlowDocumentScrollViewer
PresentationFramework (1)
MS\Internal\Documents\IFlowDocumentViewer.cs (1)
129
internal class ReaderScrollViewer :
FlowDocumentScrollViewer
, IFlowDocumentViewer
2 instantiations of FlowDocumentScrollViewer
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
4719
DefaultConstructor = delegate () { return new System.Windows.Controls.
FlowDocumentScrollViewer
(); },
System\Windows\Markup\KnownTypes.cs (1)
1266
case KnownElements.FlowDocumentScrollViewer: o = new System.Windows.Controls.
FlowDocumentScrollViewer
(); break;
108 references to FlowDocumentScrollViewer
PresentationFramework (108)
MS\Internal\Annotations\Anchoring\TextSelectionHelper.cs (6)
174
FlowDocumentScrollViewer
scrollViewer = parent as
FlowDocumentScrollViewer
;
390
FlowDocumentScrollViewer
scrollViewer = PathNode.GetParent(content) as
FlowDocumentScrollViewer
;
428
FlowDocumentScrollViewer
scrollViewer = PathNode.GetParent(content) as
FlowDocumentScrollViewer
;
MS\Internal\LayoutDump.cs (3)
452
AddUIElementDumpHandler(typeof(
FlowDocumentScrollViewer
), new DumpCustomUIElement(DumpFlowDocumentScrollViewer));
512
FlowDocumentScrollViewer
fdsv = element as
FlowDocumentScrollViewer
;
System\Windows\Annotations\AnnotationHelper.cs (2)
1090
FlowDocumentScrollViewer
scrollViewer = service.Root as
FlowDocumentScrollViewer
;
System\Windows\Annotations\AnnotationService.cs (11)
57
CommandManager.RegisterClassCommandBinding(typeof(
FlowDocumentScrollViewer
), new CommandBinding(CreateHighlightCommand, AnnotationHelper.OnCreateHighlightCommand, AnnotationHelper.OnQueryCreateHighlightCommand));
59
CommandManager.RegisterClassCommandBinding(typeof(
FlowDocumentScrollViewer
), new CommandBinding(CreateTextStickyNoteCommand, AnnotationHelper.OnCreateTextStickyNoteCommand, AnnotationHelper.OnQueryCreateTextStickyNoteCommand));
61
CommandManager.RegisterClassCommandBinding(typeof(
FlowDocumentScrollViewer
), new CommandBinding(CreateInkStickyNoteCommand, AnnotationHelper.OnCreateInkStickyNoteCommand, AnnotationHelper.OnQueryCreateInkStickyNoteCommand));
63
CommandManager.RegisterClassCommandBinding(typeof(
FlowDocumentScrollViewer
), new CommandBinding(ClearHighlightsCommand, AnnotationHelper.OnClearHighlightsCommand, AnnotationHelper.OnQueryClearHighlightsCommand));
65
CommandManager.RegisterClassCommandBinding(typeof(
FlowDocumentScrollViewer
), new CommandBinding(DeleteStickyNotesCommand, AnnotationHelper.OnDeleteStickyNotesCommand, AnnotationHelper.OnQueryDeleteStickyNotesCommand));
67
CommandManager.RegisterClassCommandBinding(typeof(
FlowDocumentScrollViewer
), new CommandBinding(DeleteAnnotationsCommand, AnnotationHelper.OnDeleteAnnotationsCommand, AnnotationHelper.OnQueryDeleteAnnotationsCommand));
101
public AnnotationService(
FlowDocumentScrollViewer
viewer)
315
public static AnnotationService GetService(
FlowDocumentScrollViewer
viewer)
1085
FlowDocumentScrollViewer
docScrollViewer = root as
FlowDocumentScrollViewer
;
1544
else if ((viewer is
FlowDocumentScrollViewer
) || (viewer is FlowDocumentReader))
System\Windows\Automation\Peers\FlowDocumentScrollViewerAutomationPeer.cs (4)
26
public FlowDocumentScrollViewerAutomationPeer(
FlowDocumentScrollViewer
owner)
39
FlowDocumentScrollViewer
owner = (
FlowDocumentScrollViewer
)Owner;
89
FlowDocument document = ((
FlowDocumentScrollViewer
)Owner).Document;
System\Windows\Controls\FlowDocumentScrollViewer.cs (71)
53
typeof(
FlowDocumentScrollViewer
),
56
_dType = DependencyObjectType.FromSystemTypeInternal(typeof(
FlowDocumentScrollViewer
));
58
TextBoxBase.SelectionBrushProperty.OverrideMetadata(typeof(
FlowDocumentScrollViewer
),
60
TextBoxBase.SelectionOpacityProperty.OverrideMetadata(typeof(
FlowDocumentScrollViewer
),
65
EventManager.RegisterClassHandler(typeof(
FlowDocumentScrollViewer
), RequestBringIntoViewEvent, new RequestBringIntoViewEventHandler(HandleRequestBringIntoView));
66
EventManager.RegisterClassHandler(typeof(
FlowDocumentScrollViewer
), Keyboard.KeyDownEvent, new KeyEventHandler(KeyDownHandler), true);
356
typeof(
FlowDocumentScrollViewer
),
366
typeof(
FlowDocumentScrollViewer
),
377
typeof(
FlowDocumentScrollViewer
),
388
typeof(
FlowDocumentScrollViewer
),
398
typeof(
FlowDocumentScrollViewer
));
407
typeof(
FlowDocumentScrollViewer
),
422
typeof(
FlowDocumentScrollViewer
),
437
typeof(
FlowDocumentScrollViewer
),
449
typeof(
FlowDocumentScrollViewer
),
459
typeof(
FlowDocumentScrollViewer
),
467
typeof(
FlowDocumentScrollViewer
),
474
TextBoxBase.SelectionBrushProperty.AddOwner(typeof(
FlowDocumentScrollViewer
));
480
TextBoxBase.SelectionOpacityProperty.AddOwner(typeof(
FlowDocumentScrollViewer
));
486
TextBoxBase.IsSelectionActiveProperty.AddOwner(typeof(
FlowDocumentScrollViewer
));
492
TextBoxBase.IsInactiveSelectionHighlightEnabledProperty.AddOwner(typeof(
FlowDocumentScrollViewer
));
1320
_commandLineDown = new RoutedUICommand(String.Empty, "FDSV_LineDown", typeof(
FlowDocumentScrollViewer
));
1321
_commandLineUp = new RoutedUICommand(String.Empty, "FDSV_LineUp", typeof(
FlowDocumentScrollViewer
));
1322
_commandLineLeft = new RoutedUICommand(String.Empty, "FDSV_LineLeft", typeof(
FlowDocumentScrollViewer
));
1323
_commandLineRight = new RoutedUICommand(String.Empty, "FDSV_LineRight", typeof(
FlowDocumentScrollViewer
));
1326
TextEditor.RegisterCommandHandlers(typeof(
FlowDocumentScrollViewer
), /*acceptsRichContent:*/true, /*readOnly:*/!IsEditingEnabled, /*registerEventListeners*/true);
1329
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), ApplicationCommands.Find,
1333
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), ApplicationCommands.Print,
1337
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), ApplicationCommands.CancelPrint,
1341
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.PreviousPage,
1345
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.NextPage,
1349
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.FirstPage,
1353
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.LastPage,
1357
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.IncreaseZoom,
1361
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.DecreaseZoom,
1365
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), _commandLineDown,
1369
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), _commandLineUp,
1373
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), _commandLineLeft,
1377
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), _commandLineRight,
1388
FlowDocumentScrollViewer
viewer = target as
FlowDocumentScrollViewer
;
1430
FlowDocumentScrollViewer
viewer = target as
FlowDocumentScrollViewer
;
1548
DocumentViewerHelper.KeyDownHelper(e, ((
FlowDocumentScrollViewer
)sender)._findToolBarHost);
1588
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1589
((
FlowDocumentScrollViewer
)d).DocumentChanged((FlowDocument)e.OldValue, (FlowDocument)e.NewValue);
1600
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1601
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1618
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1619
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1643
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1644
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1655
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1656
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1667
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1668
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1693
if (sender != null && sender is
FlowDocumentScrollViewer
)
1695
((
FlowDocumentScrollViewer
)sender).HandleRequestBringIntoView(args);
1704
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1705
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1715
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1716
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1729
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
System\Windows\Controls\Primitives\BulletDecorator.cs (4)
417
private
FlowDocumentScrollViewer
FindFlowDocumentScrollViewer(Visual root)
419
FlowDocumentScrollViewer
text = root as
FlowDocumentScrollViewer
;
427
return VisualTreeHelper.GetChild(cp, 0) as
FlowDocumentScrollViewer
;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
305
case 212: t = () => typeof(
FlowDocumentScrollViewer
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
2506
Type type = typeof(System.Windows.Controls.
FlowDocumentScrollViewer
);
2507
DependencyProperty dp = System.Windows.Controls.
FlowDocumentScrollViewer
.DocumentProperty;
2509
this.GetXamlType(typeof(System.Windows.Controls.
FlowDocumentScrollViewer
)), // DeclaringType
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
4716
typeof(System.Windows.Controls.
FlowDocumentScrollViewer
),
System\Windows\Markup\KnownTypes.cs (2)
1761
return System.Windows.Controls.
FlowDocumentScrollViewer
.DocumentProperty;
5759
case KnownElements.FlowDocumentScrollViewer: t = typeof(System.Windows.Controls.
FlowDocumentScrollViewer
); break;