Evento Shape.MouseLeave
Ocorre quando o ponteiro do mouse sai da forma.
Namespace: Microsoft.VisualBasic.PowerPacks
Assembly: Microsoft.VisualBasic.PowerPacks.Vs (em Microsoft.VisualBasic.PowerPacks.Vs.dll)
Sintaxe
<BrowsableAttribute(True)> _
Public Event MouseLeave As EventHandler
Dim instance As Shape
Dim handler As EventHandler
AddHandler instance.MouseLeave, handler
[BrowsableAttribute(true)]
public event EventHandler MouseLeave
[BrowsableAttribute(true)]
public:
event EventHandler^ MouseLeave {
void add (EventHandler^ value);
void remove (EventHandler^ value);
}
O JScript não oferece suporte a eventos.
Comentários
Eventos mouse ocorrem na seguinte ordem:
MouseHover / MouseDown / MouseWheel
MouseLeave
Para obter mais informações sobre como lidar com eventos, consulte Consumindo Eventos.
Exemplos
O exemplo a seguir exibe uma mensagem na BAR de status quando o mouse é movido sobre uma forma.Este exemplo requer que você tenha um RectangleShape controle denominado RectangleShape1 e um StatusStrip controle chamado StatusStrip1 em um formulário. The StatusStrip deve ter um ToolStripStatusLabel ToolStripStatusLabel1 nomeado.
PrivateSub RectangleShape1_MouseEnter(ByVal sender AsObject, _
ByVal e As System.EventArgs) Handles RectangleShape1.MouseEnter
ToolStripStatusLabel1.Text = "The mouse has entered the shape."EndSubPrivateSub RectangleShape1_MouseHover(ByVal sender AsObject, _
ByVal e As System.EventArgs) Handles RectangleShape1.MouseHover
ToolStripStatusLabel1.Text = "The mouse is paused over the shape."EndSubPrivateSub RectangleShape1_MouseLeave(ByVal sender AsObject, _
ByVal e As System.EventArgs) Handles RectangleShape1.MouseLeave
ToolStripStatusLabel1.Text = "The mouse has left the shape."EndSubPrivateSub RectangleShape1_MouseMove(ByVal sender AsObject, _
ByVal e As System.Windows.Forms.MouseEventArgs) Handles _
RectangleShape1.MouseMove
ToolStripStatusLabel1.Text = "The mouse is over the shape."EndSub
privatevoid rectangleShape1_MouseEnter(object sender, System.EventArgs e)
{
toolStripStatusLabel1.Text = "The mouse has entered the shape.";
}
privatevoid rectangleShape1_MouseHover(object sender, System.EventArgs e)
{
toolStripStatusLabel1.Text = "The mouse is paused over the shape.";
}
privatevoid rectangleShape1_MouseLeave(object sender, System.EventArgs e)
{
toolStripStatusLabel1.Text = "The mouse has left the shape.";
}
privatevoid rectangleShape1_MouseMove(object sender,
System.Windows.Forms.MouseEventArgs e)
{
toolStripStatusLabel1.Text = "The mouse is over the shape.";
}
Permissões
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de códigos parcialmente Confiável.
Consulte também
Referência
Namespace Microsoft.VisualBasic.PowerPacks
Outros recursos
Como: Desenhar linhas com o Controlarar de LineShape (Visual Studio)
Como: Desenhar formas com a OvalShape e controles de RectangleShape (Visual Studio)