ToolStripControlHost Constructors

Definition

Initializes a new instance of the ToolStripControlHost class.

Overloads

ToolStripControlHost(Control)

Initializes a new instance of the ToolStripControlHost class that hosts the specified control.

ToolStripControlHost(Control, String)

Initializes a new instance of the ToolStripControlHost class that hosts the specified control and that has the specified name.

ToolStripControlHost(Control)

Source:
ToolStripControlHost.cs
Source:
ToolStripControlHost.cs
Source:
ToolStripControlHost.cs

Initializes a new instance of the ToolStripControlHost class that hosts the specified control.

C#
public ToolStripControlHost(System.Windows.Forms.Control c);

Parameters

c
Control

The Control hosted by this ToolStripControlHost class.

Exceptions

The control referred to by the c parameter is null.

Examples

The following code example demonstrates constructing a ToolStripControlHost control and setting several properties. To run this example, paste the code into a form that contains a ToolStrip named toolStrip1 and call InitializeDateTimePickerHost from the form's constructor or the Load event handler.

C#
ToolStripControlHost dateTimePickerHost;

private void InitializeDateTimePickerHost()
{

    // Create a new ToolStripControlHost, passing in a control.
    dateTimePickerHost = new ToolStripControlHost(new DateTimePicker());

    // Set the font on the ToolStripControlHost, this will affect the hosted control.
    dateTimePickerHost.Font = new Font("Arial", 7.0F, FontStyle.Italic);

    // Set the Width property, this will also affect the hosted control.
    dateTimePickerHost.Width = 100;
    dateTimePickerHost.DisplayStyle = ToolStripItemDisplayStyle.Text;

    // Setting the Text property requires a string that converts to a 
    // DateTime type since that is what the hosted control requires.
    dateTimePickerHost.Text = "12/23/2005";

    // Cast the Control property back to the original type to set a 
    // type-specific property.
    ((DateTimePicker)dateTimePickerHost.Control).Format = DateTimePickerFormat.Short;

    // Add the control host to the ToolStrip.
    toolStrip1.Items.Add(dateTimePickerHost);
}

Applies to

.NET Framework 4.8.1 och andra versioner
Produkt Versioner
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

ToolStripControlHost(Control, String)

Source:
ToolStripControlHost.cs
Source:
ToolStripControlHost.cs
Source:
ToolStripControlHost.cs

Initializes a new instance of the ToolStripControlHost class that hosts the specified control and that has the specified name.

C#
public ToolStripControlHost(System.Windows.Forms.Control c, string name);

Parameters

c
Control

The Control hosted by this ToolStripControlHost class.

name
String

The name of the ToolStripControlHost.

Applies to

.NET Framework 4.8.1 och andra versioner
Produkt Versioner
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10