1 implementation of IOverlayService
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\DesignerFrame.cs (1)
25
internal class DesignerFrame : Control,
IOverlayService
, ISplitWindowService, IContainsThemedScrollbarWindows
23 references to IOverlayService
System.Windows.Forms.Design (23)
System\Windows\Forms\Design\Behavior\BehaviorService.cs (4)
62
IOverlayService
? os = serviceProvider.GetService<
IOverlayService
>();
167
IOverlayService
? os = _serviceProvider.GetService<
IOverlayService
>();
System\Windows\Forms\Design\ControlDesigner.cs (3)
43
private
IOverlayService
? _overlayService;
2305
private
IOverlayService
? OverlayService => _overlayService ??= GetService<
IOverlayService
>();
System\Windows\Forms\Design\DesignerFrame.cs (5)
225
int
IOverlayService
.PushOverlay(Control control) => _designerRegion.PushOverlay(control);
231
void
IOverlayService
.RemoveOverlay(Control control)
239
void
IOverlayService
.InsertOverlay(Control control, int index)
247
void
IOverlayService
.InvalidateOverlays(Rectangle screenRectangle)
255
void
IOverlayService
.InvalidateOverlays(Region screenRegion)
System\Windows\Forms\Design\DocumentDesigner.cs (2)
491
host.RemoveService<
IOverlayService
>();
705
IOverlayService
os = _frame;
System\Windows\Forms\Design\TabOrder.cs (6)
71
IOverlayService
? os = (
IOverlayService
?)host.GetService(typeof(
IOverlayService
));
152
IOverlayService
? os = (
IOverlayService
?)_host.GetService(typeof(
IOverlayService
));
System\Windows\Forms\Design\ToolStripAdornerWindowService.cs (3)
21
private readonly
IOverlayService
_overlayService;
34
_overlayService = (
IOverlayService
)serviceProvider.GetService(typeof(
IOverlayService
));