3 instantiations of InheritanceUI
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\ComponentTray.cs (1)
1677_inheritanceUI ??= new InheritanceUI();
System\Windows\Forms\Design\DocumentDesigner.cs (1)
721_inheritanceUI = new InheritanceUI();
System.Windows.Forms.Design.Tests (1)
System\Windows\Forms\Design\InheritanceUITests.cs (1)
23_inheritanceUI = new InheritanceUI();
19 references to InheritanceUI
System.Windows.Forms.Design (16)
System\Windows\Forms\Design\ComponentTray.cs (5)
50private InheritanceUI _inheritanceUI; 733InheritanceUI iui = InheritanceUI; 1673private InheritanceUI InheritanceUI 2322InheritanceUI iui = _tray.InheritanceUI; 2325e.Graphics.DrawImage(InheritanceUI.InheritanceGlyph, 0, 0);
System\Windows\Forms\Design\ControlDesigner.cs (4)
42private InheritanceUI? _inheritanceUI; 990_inheritanceUI = GetService<InheritanceUI>(); 1556if (_inheritanceUI is not null && pe.ClipRectangle.IntersectsWith(InheritanceUI.InheritanceGlyphRectangle)) 1558pe.Graphics.DrawImage(InheritanceUI.InheritanceGlyph, 0, 0);
System\Windows\Forms\Design\DocumentDesigner.cs (2)
32private InheritanceUI _inheritanceUI; 480host.RemoveService<InheritanceUI>();
System\Windows\Forms\Design\GroupBoxDesigner.cs (4)
16private InheritanceUI _inheritanceUI; 89_inheritanceUI ??= (InheritanceUI)GetService(typeof(InheritanceUI)); 93pe.Graphics.DrawImage(InheritanceUI.InheritanceGlyph, 0, 0);
System\Windows\Forms\Design\InheritanceUI.cs (1)
23typeof(InheritanceUI),
System.Windows.Forms.Design.Tests (3)
System\Windows\Forms\Design\InheritanceUITests.cs (3)
15private readonly InheritanceUI _inheritanceUI; 93Bitmap glyph = InheritanceUI.InheritanceGlyph; 94Rectangle glyphRect = InheritanceUI.InheritanceGlyphRectangle;