ToolTip.Show Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Définit le texte associé à une info-bulle, puis l'affiche.
Surcharges
Show(String, IWin32Window, Int32, Int32) |
Définit le texte d'info-bulle associé au contrôle spécifié, puis affiche de façon modale l'info-bulle à la position relative spécifiée. |
Show(String, IWin32Window, Point, Int32) |
Définit le texte d'info-bulle associé au contrôle spécifié, puis affiche l'info-bulle pour la durée spécifiée à la position relative spécifiée. |
Show(String, IWin32Window, Int32, Int32, Int32) |
Définit le texte d'info-bulle associé au contrôle spécifié, puis affiche l'info-bulle pour la durée spécifiée à la position relative spécifiée. |
Show(String, IWin32Window, Point) |
Définit le texte d'info-bulle associé au contrôle spécifié, puis affiche de façon modale l'info-bulle à la position relative spécifiée. |
Show(String, IWin32Window) |
Définit le texte d'info-bulle associé au contrôle spécifié et affiche l'info-bulle de façon modale. |
Show(String, IWin32Window, Int32) |
Définit le texte d'info-bulle associé au contrôle spécifié, puis affiche l'info-bulle pour la durée spécifiée. |
Show(String, IWin32Window, Int32, Int32)
Définit le texte d'info-bulle associé au contrôle spécifié, puis affiche de façon modale l'info-bulle à la position relative spécifiée.
public:
void Show(System::String ^ text, System::Windows::Forms::IWin32Window ^ window, int x, int y);
public void Show (string text, System.Windows.Forms.IWin32Window window, int x, int y);
member this.Show : string * System.Windows.Forms.IWin32Window * int * int -> unit
Public Sub Show (text As String, window As IWin32Window, x As Integer, y As Integer)
Paramètres
- window
- IWin32Window
Control pour lequel afficher l'info-bulle.
- x
- Int32
Décalage horizontal, en pixels, par rapport à l'angle supérieur gauche de la fenêtre de contrôle associée, pour afficher l'info-bulle.
- y
- Int32
Décalage vertical, en pixels, par rapport à l'angle supérieur gauche de la fenêtre de contrôle associée, pour afficher l'info-bulle.
Remarques
Cette version de la méthode surchargée Show fonctionne de manière identique à la Show(String, IWin32Window, Point) version, sauf que le décalage est spécifié comme coordonnées x et y distinctes au lieu d’un Point.
Les applications qui s’exécutent en confiance partielle doivent affirmer l’autorisation AllWindows d’utiliser cette méthode, car Show elles peuvent contrôler l’affichage et l’emplacement d’une info-bulle indépendante de l’action utilisateur.
Voir aussi
- Hide(IWin32Window)
- GetToolTip(Control)
- SetToolTip(Control, String)
- IsBalloon
- StripAmpersands
- ToolTipTitle
- ToolTipIcon
- OwnerDraw
- Popup
S’applique à
Show(String, IWin32Window, Point, Int32)
Définit le texte d'info-bulle associé au contrôle spécifié, puis affiche l'info-bulle pour la durée spécifiée à la position relative spécifiée.
public:
void Show(System::String ^ text, System::Windows::Forms::IWin32Window ^ window, System::Drawing::Point point, int duration);
public void Show (string text, System.Windows.Forms.IWin32Window window, System.Drawing.Point point, int duration);
member this.Show : string * System.Windows.Forms.IWin32Window * System.Drawing.Point * int -> unit
Public Sub Show (text As String, window As IWin32Window, point As Point, duration As Integer)
Paramètres
- window
- IWin32Window
Control pour lequel afficher l'info-bulle.
- point
- Point
Point contient l'offset, en pixels, par rapport à l'angle supérieur gauche de la fenêtre de contrôle associée, pour afficher l'info-bulle.
Exceptions
Le paramètre window
a la valeur null
.
duration
est inférieur ou égal à 0.
Remarques
Le pt
paramètre peut spécifier une position en dehors des limites du contrôle associé, de son formulaire parent ou même du bureau. L’info-bulle est positionnée au centre du contrôle associé. Pour afficher l’info-bulle modale, appelez plutôt la Show(String, IWin32Window, Point) version surchargée de cette méthode.
Les applications qui s’exécutent en confiance partielle doivent affirmer l’autorisation AllWindows d’utiliser cette méthode, car Show elles peuvent contrôler l’affichage et l’emplacement d’une info-bulle indépendante de l’action utilisateur.
Voir aussi
- Hide(IWin32Window)
- GetToolTip(Control)
- SetToolTip(Control, String)
- IsBalloon
- StripAmpersands
- ToolTipTitle
- ToolTipIcon
- OwnerDraw
- Popup
S’applique à
Show(String, IWin32Window, Int32, Int32, Int32)
Définit le texte d'info-bulle associé au contrôle spécifié, puis affiche l'info-bulle pour la durée spécifiée à la position relative spécifiée.
public:
void Show(System::String ^ text, System::Windows::Forms::IWin32Window ^ window, int x, int y, int duration);
public void Show (string text, System.Windows.Forms.IWin32Window window, int x, int y, int duration);
member this.Show : string * System.Windows.Forms.IWin32Window * int * int * int -> unit
Public Sub Show (text As String, window As IWin32Window, x As Integer, y As Integer, duration As Integer)
Paramètres
- window
- IWin32Window
Control pour lequel afficher l'info-bulle.
- x
- Int32
Décalage horizontal, en pixels, par rapport à l'angle supérieur gauche de la fenêtre de contrôle associée, pour afficher l'info-bulle.
- y
- Int32
Décalage vertical, en pixels, par rapport à l'angle supérieur gauche de la fenêtre de contrôle associée, pour afficher l'info-bulle.
Exceptions
Le paramètre window
a la valeur null
.
duration
est inférieur ou égal à 0.
Remarques
Cette version de la méthode surchargée Show fonctionne de manière identique à la Show(String, IWin32Window, Point, Int32) version, sauf que le décalage est spécifié comme coordonnées x et y distinctes au lieu d’un Point. Pour afficher l’info-bulle modale, appelez plutôt la Show(String, IWin32Window, Int32, Int32) version surchargée de cette méthode.
Les applications qui s’exécutent en confiance partielle doivent affirmer l’autorisation AllWindows d’utiliser cette méthode, car Show elles peuvent contrôler l’affichage et l’emplacement d’une info-bulle indépendante de l’action utilisateur.
Voir aussi
- Hide(IWin32Window)
- GetToolTip(Control)
- SetToolTip(Control, String)
- IsBalloon
- StripAmpersands
- ToolTipTitle
- ToolTipIcon
- OwnerDraw
- Popup
S’applique à
Show(String, IWin32Window, Point)
Définit le texte d'info-bulle associé au contrôle spécifié, puis affiche de façon modale l'info-bulle à la position relative spécifiée.
public:
void Show(System::String ^ text, System::Windows::Forms::IWin32Window ^ window, System::Drawing::Point point);
public void Show (string text, System.Windows.Forms.IWin32Window window, System.Drawing.Point point);
member this.Show : string * System.Windows.Forms.IWin32Window * System.Drawing.Point -> unit
Public Sub Show (text As String, window As IWin32Window, point As Point)
Paramètres
- window
- IWin32Window
Control pour lequel afficher l'info-bulle.
- point
- Point
Point contient l'offset, en pixels, par rapport à l'angle supérieur gauche de la fenêtre de contrôle associée, pour afficher l'info-bulle.
Exceptions
Le paramètre window
a la valeur null
.
Remarques
Le pt
paramètre peut spécifier une position en dehors des limites du contrôle associé, de son formulaire parent ou même du bureau. La version de la Show méthode affiche l’info-bulle du contrôle spécifié de façon modale ; autrement dit, l’info-bulle s’affiche jusqu’à ce que la Hide méthode soit appelée, ou jusqu’à ce que le formulaire parent soit réduit, masqué ou ignoré.
Les applications qui s’exécutent en confiance partielle doivent affirmer l’autorisation AllWindows d’utiliser cette méthode, car Show elles peuvent contrôler l’affichage et l’emplacement d’une info-bulle indépendante de l’action utilisateur.
Voir aussi
- Hide(IWin32Window)
- GetToolTip(Control)
- SetToolTip(Control, String)
- IsBalloon
- StripAmpersands
- ToolTipTitle
- ToolTipIcon
- OwnerDraw
- Popup
S’applique à
Show(String, IWin32Window)
Définit le texte d'info-bulle associé au contrôle spécifié et affiche l'info-bulle de façon modale.
public:
void Show(System::String ^ text, System::Windows::Forms::IWin32Window ^ window);
public void Show (string text, System.Windows.Forms.IWin32Window window);
member this.Show : string * System.Windows.Forms.IWin32Window -> unit
Public Sub Show (text As String, window As IWin32Window)
Paramètres
- window
- IWin32Window
Control pour lequel afficher l'info-bulle.
Exceptions
Le paramètre window
a la valeur null
.
Remarques
La version de la Show méthode affiche l’Info-bulle du contrôle spécifié modalement ; autrement dit, l’info-bulle s’affiche jusqu’à ce que la Hide méthode soit appelée, ou jusqu’à ce que le formulaire parent soit réduit, masqué ou fermé. L’info-bulle est positionnée au centre du contrôle associé.
Les applications qui s’exécutent en confiance partielle doivent affirmer l’autorisation AllWindows d’utiliser cette méthode, car Show elles peuvent contrôler l’affichage et l’emplacement d’une info-bulle indépendante de l’action utilisateur.
Voir aussi
- Hide(IWin32Window)
- GetToolTip(Control)
- SetToolTip(Control, String)
- IsBalloon
- StripAmpersands
- ToolTipTitle
- ToolTipIcon
- OwnerDraw
- Popup
S’applique à
Show(String, IWin32Window, Int32)
Définit le texte d'info-bulle associé au contrôle spécifié, puis affiche l'info-bulle pour la durée spécifiée.
public:
void Show(System::String ^ text, System::Windows::Forms::IWin32Window ^ window, int duration);
public void Show (string text, System.Windows.Forms.IWin32Window window, int duration);
member this.Show : string * System.Windows.Forms.IWin32Window * int -> unit
Public Sub Show (text As String, window As IWin32Window, duration As Integer)
Paramètres
- window
- IWin32Window
Control pour lequel afficher l'info-bulle.
Exceptions
Le paramètre window
a la valeur null
.
duration
est inférieur ou égal à 0.
Remarques
L’info-bulle est positionnée au centre du contrôle associé représenté par le win
paramètre. Pour afficher l’info-bulle modale, appelez plutôt la Show(String, IWin32Window) version surchargée de cette méthode.
Les applications qui s’exécutent en confiance partielle doivent affirmer l’autorisation AllWindows d’utiliser cette méthode, car Show elles peuvent contrôler l’affichage et l’emplacement d’une info-bulle indépendante de l’action utilisateur.
Voir aussi
- Hide(IWin32Window)
- GetToolTip(Control)
- SetToolTip(Control, String)
- IsBalloon
- StripAmpersands
- ToolTipTitle
- ToolTipIcon
- OwnerDraw
- Popup