ToolStripDropDown.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.
Positionne le ToolStripDropDown par rapport aux coordonnées spécifiées.
Surcharges
Show() |
Affiche le contrôle ToolStripDropDown dans sa position par défaut. |
Show(Point) |
Positionne le ToolStripDropDown par rapport à l'emplacement d'affichage spécifié. |
Show(Point, ToolStripDropDownDirection) |
Positionne le ToolStripDropDown par rapport à l'emplacement de contrôle spécifié et avec la direction spécifiée par rapport au contrôle parent. |
Show(Int32, Int32) |
Positionne le ToolStripDropDown par rapport aux coordonnées d'écran spécifiées. |
Show(Control, Point) |
Positionne le ToolStripDropDown par rapport à l'emplacement du contrôle spécifié. |
Show(Control, Point, ToolStripDropDownDirection) |
Positionne le ToolStripDropDown par rapport au contrôle spécifié à l'emplacement spécifié et avec la direction spécifiée par rapport au contrôle parent. |
Show(Control, Int32, Int32) |
Positionne le ToolStripDropDown par rapport aux coordonnées d'écran horizontales et verticales du contrôle spécifié. |
Show()
Affiche le contrôle ToolStripDropDown dans sa position par défaut.
public:
void Show();
[System.ComponentModel.Browsable(false)]
public void Show ();
[<System.ComponentModel.Browsable(false)>]
override this.Show : unit -> unit
Public Sub Show ()
- Attributs
Exemples
L’exemple de code suivant montre comment afficher le ToolStripDropDown contrôle à sa position par défaut.
// This method calls the ToolStripDropDown control's Show
// method to display the ContextMenuStrip in its
// default location.
private void showButton_Click(object sender, EventArgs e)
{
this.contextMenuStrip1.Show();
}
' This method calls the ToolStripDropDown control's Show
' method to display the ContextMenuStrip in its
' default location.
Private Sub showButton_Click(sender As Object, e As EventArgs) Handles showButton.Click
Me.contextMenuStrip1.Show()
End Sub
S’applique à
Show(Point)
Positionne le ToolStripDropDown par rapport à l'emplacement d'affichage spécifié.
public:
void Show(System::Drawing::Point screenLocation);
public void Show (System.Drawing.Point screenLocation);
override this.Show : System.Drawing.Point -> unit
Public Sub Show (screenLocation As Point)
Paramètres
- screenLocation
- Point
Emplacement horizontal et vertical du coin supérieur gauche de l'affichage, en pixels.
Exemples
L’exemple de code suivant montre comment afficher le ToolStripDropDown contrôle à un point fixe.
// This method calls the ToolStripDropDown control's Show
// method to display the ContextMenuStrip at a fixed point.
private void showAtPointButton_Click(object sender, EventArgs e)
{
this.contextMenuStrip1.Show(23, 55);
}
' This method calls the ToolStripDropDown control's Show
' method to display the ContextMenuStrip at a fixed point.
Private Sub showAtPointButton_Click(sender As Object, e As EventArgs) Handles showAtPointButton.Click, button2.Click
Me.contextMenuStrip1.Show(23, 55)
End Sub
S’applique à
Show(Point, ToolStripDropDownDirection)
Positionne le ToolStripDropDown par rapport à l'emplacement de contrôle spécifié et avec la direction spécifiée par rapport au contrôle parent.
public:
void Show(System::Drawing::Point position, System::Windows::Forms::ToolStripDropDownDirection direction);
public void Show (System.Drawing.Point position, System.Windows.Forms.ToolStripDropDownDirection direction);
override this.Show : System.Drawing.Point * System.Windows.Forms.ToolStripDropDownDirection -> unit
Public Sub Show (position As Point, direction As ToolStripDropDownDirection)
Paramètres
- position
- Point
Emplacement horizontal et vertical du coin supérieur gauche du contrôle de référence, en pixels.
- direction
- ToolStripDropDownDirection
Une des valeurs de l'objet ToolStripDropDownDirection.
Exemples
L’exemple de code suivant montre comment afficher le ToolStripDropDown contrôle à un point fixe dans le sens spécifié.
// This method calls the ToolStripDropDown control's Show
// method to display the ContextMenuStrip relative to the
// origin of the form.
private void showRelativeButton_Click(object sender, EventArgs e)
{
this.contextMenuStrip1.Show(this.Location, this.dropDownDirection);
}
' This method calls the ToolStripDropDown control's Show
' method to display the ContextMenuStrip relative to the
' origin of the form.
Private Sub showRelativeButton_Click(sender As Object, e As EventArgs)
Me.contextMenuStrip1.Show(Me.Location, Me.dropDownDirection)
End Sub
S’applique à
Show(Int32, Int32)
Positionne le ToolStripDropDown par rapport aux coordonnées d'écran spécifiées.
public:
void Show(int x, int y);
public void Show (int x, int y);
override this.Show : int * int -> unit
Public Sub Show (x As Integer, y As Integer)
Paramètres
- x
- Int32
Coordonnée d'écran horizontale, en pixels.
- y
- Int32
Coordonnée d'écran verticale, en pixels.
S’applique à
Show(Control, Point)
Positionne le ToolStripDropDown par rapport à l'emplacement du contrôle spécifié.
public:
void Show(System::Windows::Forms::Control ^ control, System::Drawing::Point position);
public void Show (System.Windows.Forms.Control control, System.Drawing.Point position);
override this.Show : System.Windows.Forms.Control * System.Drawing.Point -> unit
Public Sub Show (control As Control, position As Point)
Paramètres
- control
- Control
Contrôle (généralement, un ToolStripDropDownButton) qui constitue le point de référence pour la position ToolStripDropDown.
- position
- Point
Emplacement horizontal et vertical du coin supérieur gauche du contrôle de référence, en pixels.
Exceptions
Le contrôle spécifié par le paramètre control
est null
.
S’applique à
Show(Control, Point, ToolStripDropDownDirection)
Positionne le ToolStripDropDown par rapport au contrôle spécifié à l'emplacement spécifié et avec la direction spécifiée par rapport au contrôle parent.
public:
void Show(System::Windows::Forms::Control ^ control, System::Drawing::Point position, System::Windows::Forms::ToolStripDropDownDirection direction);
public void Show (System.Windows.Forms.Control control, System.Drawing.Point position, System.Windows.Forms.ToolStripDropDownDirection direction);
override this.Show : System.Windows.Forms.Control * System.Drawing.Point * System.Windows.Forms.ToolStripDropDownDirection -> unit
Public Sub Show (control As Control, position As Point, direction As ToolStripDropDownDirection)
Paramètres
- control
- Control
Contrôle (généralement, un ToolStripDropDownButton) qui constitue le point de référence pour la position ToolStripDropDown.
- position
- Point
Emplacement horizontal et vertical du coin supérieur gauche du contrôle de référence, en pixels.
- direction
- ToolStripDropDownDirection
Une des valeurs de l'objet ToolStripDropDownDirection.
Exceptions
Le contrôle spécifié par le paramètre control
est null
.
Exemples
L’exemple de code suivant montre comment afficher le ToolStripDropDown contrôle relatif au contrôle parent.
// This method calls the ToolStripDropDown control's Show
// method to display the ContextMenuStrip relative to the
// owning control.
private void button1_MouseUp(object sender, MouseEventArgs e)
{
Control c = sender as Control;
if (e.Button == MouseButtons.Right)
{
this.contextMenuStrip1.Show(c, e.Location, this.dropDownDirection);
}
}
' This method calls the ToolStripDropDown control's Show
' method to display the ContextMenuStrip relative to the
' owning control.
Private Sub button1_MouseUp(sender As Object, e As MouseEventArgs) Handles button1.MouseUp
Dim c As Control = CType(sender, Control)
If e.Button = Windows.Forms.MouseButtons.Right Then
Me.contextMenuStrip1.Show(c, e.Location, Me.dropDownDirection)
End If
End Sub
S’applique à
Show(Control, Int32, Int32)
Positionne le ToolStripDropDown par rapport aux coordonnées d'écran horizontales et verticales du contrôle spécifié.
public:
void Show(System::Windows::Forms::Control ^ control, int x, int y);
public void Show (System.Windows.Forms.Control control, int x, int y);
override this.Show : System.Windows.Forms.Control * int * int -> unit
Public Sub Show (control As Control, x As Integer, y As Integer)
Paramètres
- control
- Control
Contrôle (généralement, un ToolStripDropDownButton) qui constitue le point de référence pour la position ToolStripDropDown.
- x
- Int32
Coordonnée d'écran horizontale du contrôle, en pixels.
- y
- Int32
Coordonnée d'écran verticale du contrôle, en pixels.
Exceptions
Le contrôle spécifié par le paramètre control
est null
.