49 references to IHelpService
netstandard (1)
netstandard.cs (1)
262[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.IHelpService))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
248[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.IHelpService))]
System.ComponentModel.TypeConverter (2)
System\ComponentModel\Design\IHelpService.cs (2)
25IHelpService CreateLocalContext(HelpContextType contextType); 35void RemoveLocalContext(IHelpService localContext);
System.Windows.Forms (3)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (3)
103private IHelpService? _topHelpService; 104private IHelpService? _helpService; 5136private static void UpdateHelpAttributes(IHelpService helpService, GridEntry? entry, bool addAsF1)
System.Windows.Forms.Design (33)
System\ComponentModel\Design\BinaryEditor.cs (1)
128if (TryGetService(out IHelpService? helpService))
System\ComponentModel\Design\CollectionEditor.cs (1)
407if (Context.TryGetService(out IHelpService? helpService))
System\ComponentModel\Design\DesignerHost.cs (2)
691if (this.TryGetService(out IHelpService? helpService) 1094if (this.TryGetService(out IHelpService? helpService))
System\ComponentModel\Design\SelectionService.cs (2)
186if (GetService(typeof(IHelpService)) is not IHelpService helpService)
System\Windows\Forms\Design\DataGridViewAddColumnDialog.cs (2)
584IHelpService? helpService = _liveDataGridView.Site?.GetService<IHelpService>();
System\Windows\Forms\Design\DataGridViewCellStyleBuilder.cs (2)
294if (_context!.GetService(typeof(IHelpService)) is IHelpService helpService)
System\Windows\Forms\Design\DataGridViewColumnCollectionDialog.cs (2)
785IHelpService? helpService = _liveDataGridView?.Site?.GetService<IHelpService>();
System\Windows\Forms\Design\DocumentDesigner.cs (3)
1137IHelpService hs = (IHelpService)GetService(typeof(IHelpService));
System\Windows\Forms\Design\FormatStringDialog.cs (1)
80if (_context.TryGetService(out IHelpService? helpService))
System\Windows\Forms\Design\LinkAreaEditor.cs (2)
26IHelpService? helpService = provider.GetService<IHelpService>();
System\Windows\Forms\Design\LinkAreaEditor.LinkAreaUI.cs (2)
21private readonly IHelpService? _helpService; 23public LinkAreaUI(IHelpService? helpService)
System\Windows\Forms\Design\MaskDesignerDialog.cs (2)
37private readonly IHelpService? _helpService; 42public MaskDesignerDialog(MaskedTextBox instance, IHelpService? helpService)
System\Windows\Forms\Design\MaskedTextBoxDesignerActionList.cs (3)
18private readonly IHelpService? _helpService; 31_helpService = GetService(typeof(IHelpService)) as IHelpService;
System\Windows\Forms\Design\MaskPropertyEditor.cs (2)
27IHelpService? helpService) 69provider.GetService<IHelpService>());
System\Windows\Forms\Design\TabOrder.cs (6)
76IHelpService? hs = (IHelpService?)host.GetService(typeof(IHelpService)); 174IHelpService? hs = (IHelpService?)_host.GetService(typeof(IHelpService));
System.Windows.Forms.Design.Tests (9)
System\ComponentModel\Design\CollectionEditorTests.cs (3)
896Mock<IHelpService> mockHelpService = new(MockBehavior.Strict); 906.Setup(c => c.GetService(typeof(IHelpService))) 944.Setup(c => c.GetService(typeof(IHelpService)))
System\ComponentModel\Design\DesignSurfaceTests.cs (2)
47.Setup(p => p.GetService(typeof(IHelpService))) 143.Setup(p => p.GetService(typeof(IHelpService)))
System\Windows\Forms\Design\LinkAreaEditor.LinkAreaUITests.cs (2)
12private readonly Mock<IHelpService> _mockHelpService; 31IHelpService? helpServiceField = _linkAreaUI.TestAccessor.Dynamic._helpService;
System\Windows\Forms\Design\TabOrderTests.cs (2)
17private readonly Mock<IHelpService> _mockHelpService; 39_mockHost.Setup(h => h.GetService(typeof(IHelpService))).Returns(_mockHelpService.Object);