Propriedade DataRepeater.AllowUserToAddItems
Obtém ou define um valor que determina se os usuários podem adicionar uma nova linha para um DataRepeater em tempo de execução.
Namespace: Microsoft.VisualBasic.PowerPacks
Assembly: Microsoft.VisualBasic.PowerPacks.Vs (em Microsoft.VisualBasic.PowerPacks.Vs.dll)
Sintaxe
'Declaração
Public Property AllowUserToAddItems As Boolean
public bool AllowUserToAddItems { get; set; }
public:
property bool AllowUserToAddItems {
bool get ();
void set (bool value);
}
member AllowUserToAddItems : bool with get, set
function get AllowUserToAddItems () : boolean
function set AllowUserToAddItems (value : boolean)
Valor de propriedade
Tipo: System.Boolean
true Se o usuário pode adicionar linhas; Caso contrário, false.O padrão é true.
Comentários
Quando o AllowUserToAddItems propriedade estiver definida como True, os usuários podem adicionar uma nova linha clicando o BindingNavigatorAddNewItemToolStripButton na BindingNavigator controle, ou pressionando CTRL + N quando um DataRepeaterItem tem foco.
Quando o AllowUserToAddItems propriedade estiver definida como False, a função do teclado CTRL + N for desabilitada, mas o BindingNavigatorAddNewItemToolStripButton ainda está ativado.Se você quiser impedir que usuários adicionem linhas, também deve desabilitar ou remover o BindingNavigatorAddNewItemToolStripButton sobre o BindingNavigator controle.
Exemplos
O exemplo de código a seguir demonstra como desativar a adicionar botão quando o AllowUserToAddItems propriedade estiver definida como False.Ele presume que você tenha um formulário que contém um DataRepeater controle denominado DataRepeater1 e um BindingNavigator controle denominado ProductsBindingSource.
Private Sub DataRepeater1_AllowUserToAddItemsChanged(
) Handles DataRepeater1.AllowUserToAddItemsChanged
' If this event occurs during form initialization, exit.
If Me.IsHandleCreated = False Then Exit Sub
' If AllowUserToAddItems is False.
If DataRepeater1.AllowUserToAddItems = False Then
' Disable the Add button.
BindingNavigatorAddNewItem.Enabled = False
' Disable the BindingSource property.
ProductsBindingSource.AllowNew = False
Else
' Otherwise, enable the Add button.
BindingNavigatorAddNewItem.Enabled = True
End If
End Sub
private void dataRepeater1_AllowUserToAddItemsChanged(object sender, System.EventArgs e)
{
// If this event occurs during form initialization, exit.
if (this.IsHandleCreated == false) { return; }
// If AllowUserToAddItems is False.
if (dataRepeater1.AllowUserToAddItems == false)
// Disable the Add button.
{
bindingNavigatorAddNewItem.Enabled = false;
// Disable the BindingSource property.
productsBindingSource.AllowNew = false;
}
else
{
// Otherwise, enable the Add button.
bindingNavigatorAddNewItem.Enabled = true;
}
}
Segurança do .NET Framework
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de código parcialmente confiáveis.
Consulte também
Referência
Namespace Microsoft.VisualBasic.PowerPacks
Outros recursos
Introdução ao controle DataRepeater (Visual Studio)
Como: desativar a adicionar e excluir itens de DataRepeater (Visual Studio)