|
Dieser Artikel wurde maschinell übersetzt. Bewegen Sie den Mauszeiger über die Sätze im Artikel, um den Originaltext anzuzeigen. Weitere Informationen
|
Übersetzung
Original
|
ToolTip-Klasse
System.MarshalByRefObject
System.ComponentModel.Component
System.Windows.Forms.ToolTip
Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Der ToolTip-Typ macht die folgenden Member verfügbar.
| Name | Beschreibung | |
|---|---|---|
![]() | ToolTip() | |
![]() | ToolTip(IContainer) |
| Name | Beschreibung | |
|---|---|---|
![]() | Active | |
![]() | AutomaticDelay | |
![]() | AutoPopDelay | |
![]() | BackColor | |
![]() | CanRaiseEvents | |
![]() | Container | |
![]() | CreateParams | Infrastruktur. |
![]() | DesignMode | |
![]() | Events | |
![]() | ForeColor | |
![]() | InitialDelay | |
![]() | IsBalloon | |
![]() | OwnerDraw | |
![]() | ReshowDelay | |
![]() | ShowAlways | |
![]() | Site | |
![]() | StripAmpersands | |
![]() | Tag | |
![]() | ToolTipIcon | |
![]() | ToolTipTitle | |
![]() | UseAnimation | |
![]() | UseFading |
| Name | Beschreibung | |
|---|---|---|
![]() | CanExtend | |
![]() | CreateObjRef | |
![]() | Dispose() | |
![]() | Dispose(Boolean) | |
![]() | Equals(Object) | |
![]() | Finalize | |
![]() | GetHashCode | |
![]() | GetLifetimeService | |
![]() | GetService | |
![]() | GetToolTip | |
![]() | GetType | |
![]() | Hide | |
![]() | InitializeLifetimeService | |
![]() | MemberwiseClone() | |
![]() | MemberwiseClone(Boolean) | |
![]() | RemoveAll | |
![]() | SetToolTip | |
![]() | Show(String, IWin32Window) | |
![]() | Show(String, IWin32Window, Point) | |
![]() | Show(String, IWin32Window, Int32) | |
![]() | Show(String, IWin32Window, Point, Int32) | |
![]() | Show(String, IWin32Window, Int32, Int32) | |
![]() | Show(String, IWin32Window, Int32, Int32, Int32) | |
![]() | StopTimer | |
![]() | ToString |
| Name | Beschreibung | |
|---|---|---|
![]() | Disposed | |
![]() | Draw | |
![]() | Popup |
Hinweis |
|---|
// This example assumes that the Form_Load event handling method
// is connected to the Load event of the form.
private void Form1_Load(object sender, System.EventArgs e)
{
// Create the ToolTip and associate with the Form container.
ToolTip toolTip1 = new ToolTip();
// Set up the delays for the ToolTip.
toolTip1.AutoPopDelay = 5000;
toolTip1.InitialDelay = 1000;
toolTip1.ReshowDelay = 500;
// Force the ToolTip text to be displayed whether or not the form is active.
toolTip1.ShowAlways = true;
// Set up the ToolTip text for the Button and Checkbox.
toolTip1.SetToolTip(this.button1, "My button1");
toolTip1.SetToolTip(this.checkBox1, "My checkBox1");
}
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core-Rolle wird nicht unterstützt), Windows Server 2008 R2 (Server Core-Rolle wird mit SP1 oder höher unterstützt; Itanium wird nicht unterstützt)
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen für .NET Framework.
