Evento Shape.MouseHover
Ocorre quando o ponteiro do mouse é posicionado na forma.
Namespace: Microsoft.VisualBasic.PowerPacks
Assembly: Microsoft.VisualBasic.PowerPacks.Vs (em Microsoft.VisualBasic.PowerPacks.Vs.dll)
Sintaxe
<BrowsableAttribute(True)> _
Public Event MouseHover As EventHandler
Dim instance As Shape
Dim handler As EventHandler
AddHandler instance.MouseHover, handler
[BrowsableAttribute(true)]
public event EventHandler MouseHover
[BrowsableAttribute(true)]
public:
event EventHandler^ MouseHover {
void add (EventHandler^ value);
void remove (EventHandler^ value);
}
O JScript não oferece suporte a eventos.
Comentários
Um uso típico de MouseHover é exibir uma dica de ferramenta quando o mouse parar em uma área especificada ao redor da forma (a retângulo focalizar).A pausar necessária para este evento a crescer é especificada em milissegundos pelo MouseHoverTime propriedade.
The MouseHover evento é definido e detectado em conexão com a MouseHoverSize e MouseHoverTime Propriedades.
Eventos mouse ocorrem na seguinte ordem:
MouseHover / MouseDown / MouseWheel
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)