DataGrid.Navigate 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 o usuário navega para uma nova tabela.
public:
event System::Windows::Forms::NavigateEventHandler ^ Navigate;
public event System.Windows.Forms.NavigateEventHandler Navigate;
member this.Navigate : System.Windows.Forms.NavigateEventHandler
Public Custom Event Navigate As NavigateEventHandler
Tipo de evento
Exemplos
O exemplo de código a seguir demonstra o uso desse membro.
// Instantiate the 'Navigate' NavigateEventHandler.
private:
void CallNavigate()
{
myDataGrid->Navigate += gcnew NavigateEventHandler( this, &MyDataGrid::Grid_Navigate );
}
// Raise the event when navigating to another table.
private:
void Grid_Navigate( Object^ /*sender*/, NavigateEventArgs^ /*e*/ )
{
// String variable used to show message.
String^ myString = "Navigate event raised, moved to another table";
// Show the message when navigating to another table.
MessageBox::Show( myString, "Table navigation information" );
}
// Instantiate the 'Navigate' NavigateEventHandler.
private void CallNavigate()
{
myDataGrid.Navigate += new NavigateEventHandler(Grid_Navigate);
}
// Raise the event when navigating to another table.
private void Grid_Navigate(object sender, NavigateEventArgs e)
{
// String variable used to show message.
string myString = "Navigate event raised, moved to another table";
// Show the message when navigating to another table.
MessageBox.Show(myString, "Table navigation information");
}
' Create an instance of the 'Navigate' NavigateEventHandler.
Private Sub CallNavigate()
AddHandler myDataGrid.Navigate, AddressOf Grid_Navigate
End Sub
' Raise the event when navigating to another table.
Private Sub Grid_Navigate(ByVal sender As Object, ByVal e As NavigateEventArgs)
' String variable used to show message.
Dim myString As String = "Navigate event raised, moved to another table"
' Show the message when navigating to another table.
MessageBox.Show(myString, "Table navigation information")
End Sub
Comentários
Use o Navigate evento para redefinir propriedades de coluna individuais, como largura, conforme apropriado para a tabela.
Aplica-se a
Colaborar conosco no GitHub
A fonte deste conteúdo pode ser encontrada no GitHub, onde você também pode criar e revisar problemas e solicitações de pull. Para obter mais informações, confira o nosso guia para colaboradores.