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)
4361
bamlType.DefaultConstructor = delegate() { return new System.Windows.Controls.
FlowDocumentScrollViewer
(); };
System\Windows\Markup\KnownTypes.cs (1)
1273
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)
451
AddUIElementDumpHandler(typeof(
FlowDocumentScrollViewer
), new DumpCustomUIElement(DumpFlowDocumentScrollViewer));
511
FlowDocumentScrollViewer
fdsv = element as
FlowDocumentScrollViewer
;
System\Windows\Annotations\AnnotationHelper.cs (2)
1093
FlowDocumentScrollViewer
scrollViewer = service.Root as
FlowDocumentScrollViewer
;
System\Windows\Annotations\AnnotationService.cs (11)
59
CommandManager.RegisterClassCommandBinding(typeof(
FlowDocumentScrollViewer
), new CommandBinding(CreateHighlightCommand, AnnotationHelper.OnCreateHighlightCommand, AnnotationHelper.OnQueryCreateHighlightCommand));
61
CommandManager.RegisterClassCommandBinding(typeof(
FlowDocumentScrollViewer
), new CommandBinding(CreateTextStickyNoteCommand, AnnotationHelper.OnCreateTextStickyNoteCommand, AnnotationHelper.OnQueryCreateTextStickyNoteCommand));
63
CommandManager.RegisterClassCommandBinding(typeof(
FlowDocumentScrollViewer
), new CommandBinding(CreateInkStickyNoteCommand, AnnotationHelper.OnCreateInkStickyNoteCommand, AnnotationHelper.OnQueryCreateInkStickyNoteCommand));
65
CommandManager.RegisterClassCommandBinding(typeof(
FlowDocumentScrollViewer
), new CommandBinding(ClearHighlightsCommand, AnnotationHelper.OnClearHighlightsCommand, AnnotationHelper.OnQueryClearHighlightsCommand));
67
CommandManager.RegisterClassCommandBinding(typeof(
FlowDocumentScrollViewer
), new CommandBinding(DeleteStickyNotesCommand, AnnotationHelper.OnDeleteStickyNotesCommand, AnnotationHelper.OnQueryDeleteStickyNotesCommand));
69
CommandManager.RegisterClassCommandBinding(typeof(
FlowDocumentScrollViewer
), new CommandBinding(DeleteAnnotationsCommand, AnnotationHelper.OnDeleteAnnotationsCommand, AnnotationHelper.OnQueryDeleteAnnotationsCommand));
103
public AnnotationService(
FlowDocumentScrollViewer
viewer)
317
public static AnnotationService GetService(
FlowDocumentScrollViewer
viewer)
1091
FlowDocumentScrollViewer
docScrollViewer = root as
FlowDocumentScrollViewer
;
1550
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
));
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
));
1336
TextEditor.RegisterCommandHandlers(typeof(
FlowDocumentScrollViewer
), /*acceptsRichContent:*/true, /*readOnly:*/!IsEditingEnabled, /*registerEventListeners*/true);
1339
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), ApplicationCommands.Find,
1343
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), ApplicationCommands.Print,
1347
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), ApplicationCommands.CancelPrint,
1351
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.PreviousPage,
1355
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.NextPage,
1359
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.FirstPage,
1363
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.LastPage,
1367
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.IncreaseZoom,
1371
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.DecreaseZoom,
1375
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), _commandLineDown,
1379
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), _commandLineUp,
1383
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), _commandLineLeft,
1387
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), _commandLineRight,
1398
FlowDocumentScrollViewer
viewer = target as
FlowDocumentScrollViewer
;
1440
FlowDocumentScrollViewer
viewer = target as
FlowDocumentScrollViewer
;
1582
DocumentViewerHelper.KeyDownHelper(e, ((
FlowDocumentScrollViewer
)sender)._findToolBarHost);
1622
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1623
((
FlowDocumentScrollViewer
)d).DocumentChanged((FlowDocument)e.OldValue, (FlowDocument)e.NewValue);
1634
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1635
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1652
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1653
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1677
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1678
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1689
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1690
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1701
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1702
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1727
if (sender != null && sender is
FlowDocumentScrollViewer
)
1729
((
FlowDocumentScrollViewer
)sender).HandleRequestBringIntoView(args);
1738
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1739
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1749
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1750
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1763
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)
2443
Type type = typeof(System.Windows.Controls.
FlowDocumentScrollViewer
);
2444
DependencyProperty dp = System.Windows.Controls.
FlowDocumentScrollViewer
.DocumentProperty;
2446
this.GetXamlType(typeof(System.Windows.Controls.
FlowDocumentScrollViewer
)), // DeclaringType
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
4359
typeof(System.Windows.Controls.
FlowDocumentScrollViewer
),
System\Windows\Markup\KnownTypes.cs (2)
1768
return System.Windows.Controls.
FlowDocumentScrollViewer
.DocumentProperty;
5766
case KnownElements.FlowDocumentScrollViewer: t = typeof(System.Windows.Controls.
FlowDocumentScrollViewer
); break;