Partilhar via


Evento Shape.VisibleChanged

Ocorre quando o valor da propriedade Visible muda.

Namespace:  Microsoft.VisualBasic.PowerPacks
Assembly:  Microsoft.VisualBasic.PowerPacks.Vs (em Microsoft.VisualBasic.PowerPacks.Vs.dll)

Sintaxe

'Declaração
<BrowsableAttribute(True)> _
Public Event VisibleChanged As EventHandler
[BrowsableAttribute(true)]
public event EventHandler VisibleChanged
[BrowsableAttribute(true)]
public:
 event EventHandler^ VisibleChanged {
    void add (EventHandler^ value);
    void remove (EventHandler^ value);
}
[<BrowsableAttribute(true)>]
member VisibleChanged : IEvent<EventHandler,
    EventArgs>
JScript não oferece suporte a eventos.

Comentários

Este evento será acionado se a propriedade Visible for alterada por uma modificação programática ou pela interação do usuário.

Para obter mais informações sobre como identificar eventos, consulte Manipulando e acionando eventos.

Exemplos

O exemplo a seguir mostra como responder a VisibleChanged evento em um manipulador de eventos. Este exemplo requer que você tenha um OvalShape controle denominado OvalShape1 e um RectangleShape chamado RectangleShape1 em um formulário.

    Private Sub OvalShape1_VisibleChanged() Handles OvalShape1.VisibleChanged
        ' Switch between the oval and rectangle shapes. 
        If OvalShape1.Visible = False Then
            RectangleShape1.Visible = True 
        Else
            RectangleShape1.Visible = False 
        End If 
    End Sub
        private void ovalShape1_VisibleChanged(object sender, System.EventArgs e)
        {
            // Switch between the oval and rectangle shapes. 
            if (ovalShape1.Visible == false)
            {
                rectangleShape1.Visible = true;
            }
            else
            {
                rectangleShape1.Visible = false;
            }
        }

Segurança do .NET Framework

Consulte também

Referência

Shape Classe

Namespace Microsoft.VisualBasic.PowerPacks

Outros recursos

Como desenhar linhas com o controle LineShape (Visual Studio)

Como desenhar formas com os controles OvalShape e RectangleShape (Visual Studio)

Introdução aos controles de linha e forma (Visual Studio)