DataRepeater.AllowUserToDeleteItems プロパティ
ユーザーは実行時に DataRepeater から行を削除できるかどうかを示す値を取得または設定します。
名前空間: Microsoft.VisualBasic.PowerPacks
アセンブリ: Microsoft.VisualBasic.PowerPacks.Vs (Microsoft.VisualBasic.PowerPacks.Vs.dll 内)
構文
'宣言
Public Property AllowUserToDeleteItems As Boolean
public bool AllowUserToDeleteItems { get; set; }
public:
property bool AllowUserToDeleteItems {
bool get ();
void set (bool value);
}
member AllowUserToDeleteItems : bool with get, set
function get AllowUserToDeleteItems () : boolean
function set AllowUserToDeleteItems (value : boolean)
プロパティ値
型 : System.Boolean
ユーザーが行を削除できます true ; それ false。既定値は、true です。
解説
AllowUserToDeleteItems のプロパティが True に設定すると、ユーザーは BindingNavigator コントロールの *** BindingNavigatorDeleteItem ***ToolStripButton をクリックするか、Del キーを押すことによって DataRepeaterItem にフォーカスがあるときに行を削除できます。
AllowUserToDeleteItemsFalse のプロパティがに設定されている場合、削除のキーボードの関数は無効になりますが、*** BindingNavigatorDeleteItem ***ToolStripButton が有効になります。ユーザーは、行を削除できないようにする場合は、BindingNavigator コントロールの *** BindingNavigatorDeleteItem ***ToolStripButton を無効化または削除する必要があります。
例
次のコード例に AllowUserToAddItems のプロパティがに設定されている場合 False 削除 ToolStripButton のボタンを無効にする方法を示します。DataRepeater1 と BindingNavigator のコントロールと呼ばれる DataRepeater のコントロールが含まれているフォームがあると仮定しています。
Private Sub DataRepeater1_AllowUserToDeleteItemsChanged(
) Handles DataRepeater1.AllowUserToDeleteItemsChanged
' If this event occurs during form initialization, exit.
If Me.IsHandleCreated = False Then Exit Sub
' If AllowUserToDeleteItems is False.
If DataRepeater1.AllowUserToDeleteItems = False Then
' Disable the Delete button.
BindingNavigatorDeleteItem.Enabled = False
Else
' Otherwise, enable the Delete button.
BindingNavigatorDeleteItem.Enabled = True
End If
End Sub
Private Sub BindingNavigatorDeleteItem_EnabledChanged(
) Handles BindingNavigatorDeleteItem.EnabledChanged
If DataRepeater1.AllowUserToDeleteItems = False Then
' The BindingSource resets this property when a
' new record is selected, so override it.
If BindingNavigatorDeleteItem.Enabled = True Then
BindingNavigatorDeleteItem.Enabled = False
End If
End If
End Sub
private void dataRepeater1_AllowUserToDeleteItemsChanged(object sender, System.EventArgs e)
{
// If this event occurs during form initialization, exit.
if (this.IsHandleCreated == false) { return; }
// If AllowUserToDeleteItems is False.
if (dataRepeater1.AllowUserToDeleteItems == false)
// Disable the Delete button.
{
bindingNavigatorDeleteItem.Enabled = false;
}
else
{
// Otherwise, enable the Delete button.
bindingNavigatorDeleteItem.Enabled = true;
}
}
private void bindingNavigatorDeleteItem_EnabledChanged(object sender, System.EventArgs e)
{
if (dataRepeater1.AllowUserToDeleteItems == false)
// The BindingSource resets this property when a
// new record is selected, so override it.
{
if (bindingNavigatorDeleteItem.Enabled == true)
{
bindingNavigatorDeleteItem.Enabled = false;
}
}
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。
参照
関連項目
Microsoft.VisualBasic.PowerPacks 名前空間