1 type derived from ToolBar
UnsupportedTypes (1)
CreateFrameworkTypes.cs (1)
397private class TestToolBar : ToolBar
1 instantiation of ToolBar
System.Windows.Forms.Tests (1)
System\Windows\Forms\UnsupportedTypesTests.cs (1)
56() => new ToolBar(),
5 references to ToolBar
System.Windows.Forms (3)
src\Common\src\Obsoletions.cs (1)
39internal const string ToolBarMessage = $"`{nameof(ToolBar)}` is provided for binary compatibility with .NET Framework and is not intended to be used directly from your code. Use `{nameof(ToolStrip)}` instead.";
System\Windows\Forms\Controls\Unsupported\ToolBar\ToolBar.ToolBarButtonCollection.cs (1)
25public ToolBarButtonCollection(ToolBar owner) => throw new PlatformNotSupportedException();
System\Windows\Forms\Controls\Unsupported\ToolBar\ToolBarButton.cs (1)
78public ToolBar Parent => throw null;
System.Windows.Forms.Tests (2)
System\Windows\Forms\AccessibleObjects\Control.ControlAccessibleObjectTests.cs (1)
53typeof(ToolBar),
System\Windows\Forms\UnsupportedTypesTests.cs (1)
59() => new ToolBar.ToolBarButtonCollection(owner: null!),