Compartir a través de


DataRepeater.NewItemNeeded (Evento)

Actualización: noviembre 2007

Se produce cuando la propiedad VirtualMode está establecida en True y el usuario crea un nuevo DataRepeaterItem en blanco.

Espacio de nombres:  Microsoft.VisualBasic.PowerPacks
Ensamblado:  Microsoft.VisualBasic.PowerPacks.Vs (en Microsoft.VisualBasic.PowerPacks.Vs.dll)

Sintaxis

Public Event NewItemNeeded As EventHandler

Dim instance As DataRepeater
Dim handler As EventHandler

AddHandler instance.NewItemNeeded, handler
public event EventHandler NewItemNeeded
public:
 event EventHandler^ NewItemNeeded {
    void add (EventHandler^ value);
    void remove (EventHandler^ value);
}
JScript no admite eventos.

Comentarios

En modo virtual, utilice este evento para agregar un nuevo registro a su almacén de datos cuando el usuario agrega un nuevo elemento.

Cuando el valor de la propiedad VirtualMode está establecido en False, no se provoca este evento.

Para obtener más información sobre cómo controlar los eventos, vea Utilizar eventos.

Ejemplos

En el siguiente ejemplo se muestra cómo controlar el evento NewItemNeeded. Se supone que tiene un control DataRepeater denominado DataRepeater1 cuya propiedad VirtualMode está establecida en True, y que tiene un almacén de datos para un origen de datos denominado Employees.

Private Sub DataRepeater1_NewItemNeeded(ByVal sender As Object, _
 ByVal e As System.EventArgs) Handles DataRepeater1.NewItemNeeded
    Dim newEmployee As New Employee
    Employees.Add(newEmployee)
    blnNewItemNeedEventFired = True
End Sub
private void dataRepeater1_NewItemNeeded(object sender, System.EventArgs e)
{
    Employee newEmployee = new Employee();
    Employees.Add(newEmployee);
    blnNewItemNeedEventFired = true;
}

Permisos

Vea también

Referencia

DataRepeater (Clase)

DataRepeater (Miembros)

Microsoft.VisualBasic.PowerPacks (Espacio de nombres)

ItemValueNeeded

ItemValuePushed

Otros recursos

Introducción al control DataRepeater (Visual Studio)

Modo virtual del control DataRepeater (Visual Studio)