Condividi tramite


Metodo DataRepeater.AddNew

Aggiunge un nuovo oggetto DataRepeaterItem al controllo DataRepeater.

Spazio dei nomi:  Microsoft.VisualBasic.PowerPacks
Assembly:  Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)

Sintassi

'Dichiarazione
Public Sub AddNew
public void AddNew()
public:
void AddNew()
member AddNew : unit -> unit
public function AddNew()

Eccezioni

Eccezione Condizione
ReadOnlyException

La proprietà AllowUserToAddItems è impostata su False.

Note

Utilizzare questo metodo per visualizzare un nuovo DataRepeaterItem in fondo il DataRepeater controllo. Dati per i controlli del DataRepeaterItem sarà vuoto a meno che non viene fornito un valore predefinito per il DataSourceChanged evento o nel AddNew metodo.

When the AllowUserToAddItems property is set to True, users can also add a new DataRepeaterItem by clicking the BindingNavigatorAddNewItem ToolStripButton on the BindingNavigator control, or by pressing CTRL+N when a DataRepeaterItem has focus.

Esempi

Nell'esempio seguente viene illustrato come impostare il testo predefinito AddNew metodo. Si presuppone che si disponga di un modulo che contiene un Button denominato AddNewButton e un limite DataRepeater controllo denominato DataRepeater1 che contiene un TextBox controllo denominato ProductNameTextBox.

Private Sub AddNewButton_Click() Handles AddNewButton.Click
    ' Add a new repeater item.
    DataRepeater1.AddNew()
    ' Set the default text.
    DataRepeater1.CurrentItem.Controls("ProductNameTextBox").Text = 
       "New Product" 
End Sub
private void addNewButton_Click(object sender, System.EventArgs e)
{
    // Add a new repeater item.
    dataRepeater1.AddNew();
    // Set the default text.
    dataRepeater1.CurrentItem.Controls["productNameTextBox"].Text = "New Product";
}

Sicurezza di .NET Framework

Vedere anche

Riferimenti

DataRepeater Classe

Spazio dei nomi Microsoft.VisualBasic.PowerPacks

Altre risorse

Introduzione al controllo DataRepeater (Visual Studio)

How to: Disable Adding and Deleting DataRepeater Items