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);
353
typeof(
FlowDocumentScrollViewer
),
363
typeof(
FlowDocumentScrollViewer
),
374
typeof(
FlowDocumentScrollViewer
),
385
typeof(
FlowDocumentScrollViewer
),
395
typeof(
FlowDocumentScrollViewer
));
404
typeof(
FlowDocumentScrollViewer
),
419
typeof(
FlowDocumentScrollViewer
),
434
typeof(
FlowDocumentScrollViewer
),
446
typeof(
FlowDocumentScrollViewer
),
456
typeof(
FlowDocumentScrollViewer
),
464
typeof(
FlowDocumentScrollViewer
),
471
TextBoxBase.SelectionBrushProperty.AddOwner(typeof(
FlowDocumentScrollViewer
));
477
TextBoxBase.SelectionOpacityProperty.AddOwner(typeof(
FlowDocumentScrollViewer
));
483
TextBoxBase.IsSelectionActiveProperty.AddOwner(typeof(
FlowDocumentScrollViewer
));
489
TextBoxBase.IsInactiveSelectionHighlightEnabledProperty.AddOwner(typeof(
FlowDocumentScrollViewer
));
1308
_commandLineDown = new RoutedUICommand(String.Empty, "FDSV_LineDown", typeof(
FlowDocumentScrollViewer
));
1309
_commandLineUp = new RoutedUICommand(String.Empty, "FDSV_LineUp", typeof(
FlowDocumentScrollViewer
));
1310
_commandLineLeft = new RoutedUICommand(String.Empty, "FDSV_LineLeft", typeof(
FlowDocumentScrollViewer
));
1311
_commandLineRight = new RoutedUICommand(String.Empty, "FDSV_LineRight", typeof(
FlowDocumentScrollViewer
));
1314
TextEditor.RegisterCommandHandlers(typeof(
FlowDocumentScrollViewer
), /*acceptsRichContent:*/true, /*readOnly:*/!IsEditingEnabled, /*registerEventListeners*/true);
1317
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), ApplicationCommands.Find,
1321
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), ApplicationCommands.Print,
1325
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), ApplicationCommands.CancelPrint,
1329
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.PreviousPage,
1333
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.NextPage,
1337
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.FirstPage,
1341
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.LastPage,
1345
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.IncreaseZoom,
1349
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.DecreaseZoom,
1353
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), _commandLineDown,
1357
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), _commandLineUp,
1361
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), _commandLineLeft,
1365
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), _commandLineRight,
1376
FlowDocumentScrollViewer
viewer = target as
FlowDocumentScrollViewer
;
1418
FlowDocumentScrollViewer
viewer = target as
FlowDocumentScrollViewer
;
1536
DocumentViewerHelper.KeyDownHelper(e, ((
FlowDocumentScrollViewer
)sender)._findToolBarHost);
1576
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1577
((
FlowDocumentScrollViewer
)d).DocumentChanged((FlowDocument)e.OldValue, (FlowDocument)e.NewValue);
1588
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1589
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1606
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1607
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1631
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1632
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;
1681
if (sender != null && sender is
FlowDocumentScrollViewer
)
1683
((
FlowDocumentScrollViewer
)sender).HandleRequestBringIntoView(args);
1692
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1693
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1703
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1704
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1714
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;