1 implementation of IDesignerOptionService
System.ComponentModel.TypeConverter (1)
System\ComponentModel\Design\DesignerOptionService.cs (1)
13public abstract class DesignerOptionService : IDesignerOptionService
8 references to IDesignerOptionService
netstandard (1)
netstandard.cs (1)
257[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.IDesignerOptionService))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
243[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.IDesignerOptionService))]
System.ComponentModel.TypeConverter (2)
System\ComponentModel\Design\DesignerOptionService.cs (2)
90object? IDesignerOptionService.GetOptionValue(string pageName, string valueName) 100void IDesignerOptionService.SetOptionValue(string pageName, string valueName, object value)
System.Windows.Forms.Design (4)
System\Windows\Forms\Design\DesignerUtils.cs (1)
377return provider.TryGetService(out IDesignerOptionService? optionService)
System\Windows\Forms\Design\ParentControlDesigner.cs (3)
1285IDesignerOptionService optSvc = (IDesignerOptionService)GetService(typeof(IDesignerOptionService));