8 references to
System.Windows.Forms (8)
winforms\Managed\System\WinForms\ToolStripButton.cs (4)
36public ToolStripButton(string text):base(text,null,null) { 39public ToolStripButton(Image image):base(null,image,null) { 42public ToolStripButton(string text, Image image):base(text,image,null) { 45public ToolStripButton(string text, Image image, EventHandler onClick):base(text,image,onClick) {
winforms\Managed\System\WinForms\ToolStripDropDownItem.cs (1)
39protected ToolStripDropDownItem(string text, Image image, EventHandler onClick) : base(text, image, onClick) {
winforms\Managed\System\WinForms\ToolStripLabel.cs (3)
45public ToolStripLabel(string text):base(text,null,null) { 47public ToolStripLabel(Image image):base(null,image,null) { 49public ToolStripLabel(string text, Image image):base(text,image,null) {