PropertyGrid.PropertyValueChanged Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Ocorre quando um valor de propriedade é alterado.
public:
event System::Windows::Forms::PropertyValueChangedEventHandler ^ PropertyValueChanged;
public event System.Windows.Forms.PropertyValueChangedEventHandler PropertyValueChanged;
public event System.Windows.Forms.PropertyValueChangedEventHandler? PropertyValueChanged;
member this.PropertyValueChanged : System.Windows.Forms.PropertyValueChangedEventHandler
Public Custom Event PropertyValueChanged As PropertyValueChangedEventHandler
Tipo de evento
Exemplos
O exemplo de código a seguir demonstra o uso desse membro. No exemplo, um manipulador de eventos relata a ocorrência do PropertyValueChanged evento. Este relatório ajuda você a saber quando o evento ocorre e pode ajudá-lo na depuração. Para relatar vários eventos ou eventos que ocorrem com frequência, considere substituir MessageBox.ShowConsole.WriteLine por ou acrescentar a mensagem a uma multilinha TextBox.
Para executar o código de exemplo, cole-o em um projeto que contém uma instância do tipo PropertyGrid chamada PropertyGrid1
. Em seguida, verifique se o manipulador de eventos está associado ao PropertyValueChanged evento.
private void PropertyGrid1_PropertyValueChanged(Object sender, PropertyValueChangedEventArgs e) {
System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
messageBoxCS.AppendFormat("{0} = {1}", "ChangedItem", e.ChangedItem );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "OldValue", e.OldValue );
messageBoxCS.AppendLine();
MessageBox.Show(messageBoxCS.ToString(), "PropertyValueChanged Event" );
}
Private Sub PropertyGrid1_PropertyValueChanged(sender as Object, e as PropertyValueChangedEventArgs) _
Handles PropertyGrid1.PropertyValueChanged
Dim messageBoxVB as New System.Text.StringBuilder()
messageBoxVB.AppendFormat("{0} = {1}", "ChangedItem", e.ChangedItem)
messageBoxVB.AppendLine()
messageBoxVB.AppendFormat("{0} = {1}", "OldValue", e.OldValue)
messageBoxVB.AppendLine()
MessageBox.Show(messageBoxVB.ToString(),"PropertyValueChanged Event")
End Sub
Comentários
Para obter mais informações sobre como lidar com eventos, consulte Manipulando e gerando eventos.