1 type derived from FlowDocumentScrollViewer
PresentationFramework (1)
MS\Internal\Documents\IFlowDocumentViewer.cs (1)
133
internal class ReaderScrollViewer :
FlowDocumentScrollViewer
, IFlowDocumentViewer
2 instantiations of FlowDocumentScrollViewer
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
4363
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)
184
FlowDocumentScrollViewer
scrollViewer = parent as
FlowDocumentScrollViewer
;
400
FlowDocumentScrollViewer
scrollViewer = PathNode.GetParent(content) as
FlowDocumentScrollViewer
;
438
FlowDocumentScrollViewer
scrollViewer = PathNode.GetParent(content) as
FlowDocumentScrollViewer
;
MS\Internal\LayoutDump.cs (3)
454
AddUIElementDumpHandler(typeof(
FlowDocumentScrollViewer
), new DumpCustomUIElement(DumpFlowDocumentScrollViewer));
514
FlowDocumentScrollViewer
fdsv = element as
FlowDocumentScrollViewer
;
System\Windows\Annotations\AnnotationHelper.cs (2)
1105
FlowDocumentScrollViewer
scrollViewer = service.Root as
FlowDocumentScrollViewer
;
System\Windows\Annotations\AnnotationService.cs (11)
71
CommandManager.RegisterClassCommandBinding(typeof(
FlowDocumentScrollViewer
), new CommandBinding(CreateHighlightCommand, AnnotationHelper.OnCreateHighlightCommand, AnnotationHelper.OnQueryCreateHighlightCommand));
73
CommandManager.RegisterClassCommandBinding(typeof(
FlowDocumentScrollViewer
), new CommandBinding(CreateTextStickyNoteCommand, AnnotationHelper.OnCreateTextStickyNoteCommand, AnnotationHelper.OnQueryCreateTextStickyNoteCommand));
75
CommandManager.RegisterClassCommandBinding(typeof(
FlowDocumentScrollViewer
), new CommandBinding(CreateInkStickyNoteCommand, AnnotationHelper.OnCreateInkStickyNoteCommand, AnnotationHelper.OnQueryCreateInkStickyNoteCommand));
77
CommandManager.RegisterClassCommandBinding(typeof(
FlowDocumentScrollViewer
), new CommandBinding(ClearHighlightsCommand, AnnotationHelper.OnClearHighlightsCommand, AnnotationHelper.OnQueryClearHighlightsCommand));
79
CommandManager.RegisterClassCommandBinding(typeof(
FlowDocumentScrollViewer
), new CommandBinding(DeleteStickyNotesCommand, AnnotationHelper.OnDeleteStickyNotesCommand, AnnotationHelper.OnQueryDeleteStickyNotesCommand));
81
CommandManager.RegisterClassCommandBinding(typeof(
FlowDocumentScrollViewer
), new CommandBinding(DeleteAnnotationsCommand, AnnotationHelper.OnDeleteAnnotationsCommand, AnnotationHelper.OnQueryDeleteAnnotationsCommand));
115
public AnnotationService(
FlowDocumentScrollViewer
viewer)
329
public static AnnotationService GetService(
FlowDocumentScrollViewer
viewer)
1103
FlowDocumentScrollViewer
docScrollViewer = root as
FlowDocumentScrollViewer
;
1562
else if ((viewer is
FlowDocumentScrollViewer
) || (viewer is FlowDocumentReader))
System\Windows\Automation\Peers\FlowDocumentScrollViewerAutomationPeer.cs (4)
28
public FlowDocumentScrollViewerAutomationPeer(
FlowDocumentScrollViewer
owner)
41
FlowDocumentScrollViewer
owner = (
FlowDocumentScrollViewer
)Owner;
91
FlowDocument document = ((
FlowDocumentScrollViewer
)Owner).Document;
System\Windows\Controls\FlowDocumentScrollViewer.cs (71)
57
typeof(
FlowDocumentScrollViewer
),
60
_dType = DependencyObjectType.FromSystemTypeInternal(typeof(
FlowDocumentScrollViewer
));
62
TextBoxBase.SelectionBrushProperty.OverrideMetadata(typeof(
FlowDocumentScrollViewer
),
64
TextBoxBase.SelectionOpacityProperty.OverrideMetadata(typeof(
FlowDocumentScrollViewer
),
69
EventManager.RegisterClassHandler(typeof(
FlowDocumentScrollViewer
), RequestBringIntoViewEvent, new RequestBringIntoViewEventHandler(HandleRequestBringIntoView));
70
EventManager.RegisterClassHandler(typeof(
FlowDocumentScrollViewer
), Keyboard.KeyDownEvent, new KeyEventHandler(KeyDownHandler), true);
360
typeof(
FlowDocumentScrollViewer
),
370
typeof(
FlowDocumentScrollViewer
),
381
typeof(
FlowDocumentScrollViewer
),
392
typeof(
FlowDocumentScrollViewer
),
402
typeof(
FlowDocumentScrollViewer
));
411
typeof(
FlowDocumentScrollViewer
),
426
typeof(
FlowDocumentScrollViewer
),
441
typeof(
FlowDocumentScrollViewer
),
453
typeof(
FlowDocumentScrollViewer
),
463
typeof(
FlowDocumentScrollViewer
),
471
typeof(
FlowDocumentScrollViewer
),
478
TextBoxBase.SelectionBrushProperty.AddOwner(typeof(
FlowDocumentScrollViewer
));
484
TextBoxBase.SelectionOpacityProperty.AddOwner(typeof(
FlowDocumentScrollViewer
));
490
TextBoxBase.IsSelectionActiveProperty.AddOwner(typeof(
FlowDocumentScrollViewer
));
496
TextBoxBase.IsInactiveSelectionHighlightEnabledProperty.AddOwner(typeof(
FlowDocumentScrollViewer
));
1333
_commandLineDown = new RoutedUICommand(String.Empty, "FDSV_LineDown", typeof(
FlowDocumentScrollViewer
));
1334
_commandLineUp = new RoutedUICommand(String.Empty, "FDSV_LineUp", typeof(
FlowDocumentScrollViewer
));
1335
_commandLineLeft = new RoutedUICommand(String.Empty, "FDSV_LineLeft", typeof(
FlowDocumentScrollViewer
));
1336
_commandLineRight = new RoutedUICommand(String.Empty, "FDSV_LineRight", typeof(
FlowDocumentScrollViewer
));
1339
TextEditor.RegisterCommandHandlers(typeof(
FlowDocumentScrollViewer
), /*acceptsRichContent:*/true, /*readOnly:*/!IsEditingEnabled, /*registerEventListeners*/true);
1342
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), ApplicationCommands.Find,
1346
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), ApplicationCommands.Print,
1350
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), ApplicationCommands.CancelPrint,
1354
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.PreviousPage,
1358
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.NextPage,
1362
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.FirstPage,
1366
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.LastPage,
1370
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.IncreaseZoom,
1374
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), NavigationCommands.DecreaseZoom,
1378
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), _commandLineDown,
1382
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), _commandLineUp,
1386
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), _commandLineLeft,
1390
CommandHelpers.RegisterCommandHandler(typeof(
FlowDocumentScrollViewer
), _commandLineRight,
1401
FlowDocumentScrollViewer
viewer = target as
FlowDocumentScrollViewer
;
1443
FlowDocumentScrollViewer
viewer = target as
FlowDocumentScrollViewer
;
1585
DocumentViewerHelper.KeyDownHelper(e, ((
FlowDocumentScrollViewer
)sender)._findToolBarHost);
1625
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1626
((
FlowDocumentScrollViewer
)d).DocumentChanged((FlowDocument)e.OldValue, (FlowDocument)e.NewValue);
1637
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1638
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1655
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1656
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1680
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1681
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1692
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1693
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1704
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1705
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1730
if (sender != null && sender is
FlowDocumentScrollViewer
)
1732
((
FlowDocumentScrollViewer
)sender).HandleRequestBringIntoView(args);
1741
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1742
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1752
Invariant.Assert(d != null && d is
FlowDocumentScrollViewer
);
1753
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
1766
FlowDocumentScrollViewer
viewer = (
FlowDocumentScrollViewer
)d;
System\Windows\Controls\Primitives\BulletDecorator.cs (4)
424
private
FlowDocumentScrollViewer
FindFlowDocumentScrollViewer(Visual root)
426
FlowDocumentScrollViewer
text = root as
FlowDocumentScrollViewer
;
434
return VisualTreeHelper.GetChild(cp, 0) as
FlowDocumentScrollViewer
;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
308
case 212: t = () => typeof(
FlowDocumentScrollViewer
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
2445
Type type = typeof(System.Windows.Controls.
FlowDocumentScrollViewer
);
2446
DependencyProperty dp = System.Windows.Controls.
FlowDocumentScrollViewer
.DocumentProperty;
2448
this.GetXamlType(typeof(System.Windows.Controls.
FlowDocumentScrollViewer
)), // DeclaringType
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
4361
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;