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