LabelEditEventArgs.Item Propriedade
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.
Obtém o índice de base zero do ListViewItem que contém o rótulo a ser editado.
public:
property int Item { int get(); };
public int Item { get; }
member this.Item : int
Public ReadOnly Property Item As Integer
Valor da propriedade
O índice de base zero do ListViewItem.
Exemplos
O exemplo de código a seguir demonstra o tratamento do ListView.BeforeLabelEdit evento e o uso das Item propriedades e CancelEdit . Para executar o exemplo, cole o código a seguir em um formulário que contém um controle ListView chamado ListView1 e preenchido com pelo menos três itens. Verifique se todos os eventos estão associados aos métodos de manipulação de eventos.
void ListView1_BeforeLabelEdit( Object^ sender,
System::Windows::Forms::LabelEditEventArgs^ e )
{
// Allow all but the first two items of the list to
// be modified by the user.
if ( e->Item < 2 )
{
e->CancelEdit = true;
}
}
private void ListView1_BeforeLabelEdit(object sender,
System.Windows.Forms.LabelEditEventArgs e)
{
// Allow all but the first two items of the list to
// be modified by the user.
if (e.Item<2)
{
e.CancelEdit = true;
}
}
Private Sub ListView1_BeforeLabelEdit(ByVal sender As Object, _
ByVal e As System.Windows.Forms.LabelEditEventArgs) _
Handles ListView1.BeforeLabelEdit
' Allow all but the first two items of the list to be modified by
' the user.
If (e.Item < 2) Then
e.CancelEdit = True
End If
End Sub