共用方式為


DataRepeaterAddRemoveItemsCancelEventArgs 類別

DeletingItemsUserDeletingItems 事件提供資料。

繼承階層架構

Object
  EventArgs
    CancelEventArgs
      Microsoft.VisualBasic.PowerPacks.DataRepeaterAddRemoveItemsCancelEventArgs

命名空間:  Microsoft.VisualBasic.PowerPacks
組件:  Microsoft.VisualBasic.PowerPacks.Vs (在 Microsoft.VisualBasic.PowerPacks.Vs.dll 中)

語法

'宣告
Public Class DataRepeaterAddRemoveItemsCancelEventArgs _
    Inherits CancelEventArgs
public class DataRepeaterAddRemoveItemsCancelEventArgs : CancelEventArgs
public ref class DataRepeaterAddRemoveItemsCancelEventArgs : public CancelEventArgs
type DataRepeaterAddRemoveItemsCancelEventArgs =  
    class 
        inherit CancelEventArgs 
    end
public class DataRepeaterAddRemoveItemsCancelEventArgs extends CancelEventArgs

DataRepeaterAddRemoveItemsCancelEventArgs 類型會公開下列成員。

建構函式

  名稱 描述
公用方法 DataRepeaterAddRemoveItemsCancelEventArgs 初始化 DataRepeaterAddRemoveItemsCancelEventArgs 類別的新執行個體。

回頁首

屬性

  名稱 描述
公用屬性 Cancel 取得或設定值,這個值表示是否應該取消事件。 (繼承自 CancelEventArgs)。
公用屬性 ItemCount 取得刪除的項目數目。
公用屬性 ItemIndex 取得正在編輯項目的索引。

回頁首

方法

  名稱 描述
公用方法 Equals 判斷指定的物件是否等於目前的物件。 (繼承自 Object)。
受保護的方法 Finalize 在記憶體回收開始前,允許物件嘗試釋放資源,並執行其他清除作業。 (繼承自 Object)。
公用方法 GetHashCode 做為預設雜湊函式。 (繼承自 Object)。
公用方法 GetType 取得目前實例 Type 的屬性。 (繼承自 Object)。
受保護的方法 MemberwiseClone 建立目前 Object 的淺層複製 (Shallow Copy) 。 (繼承自 Object)。
公用方法 ToString 傳回代表目前物件的字串。 (繼承自 Object)。

回頁首

備註

要求時,會刪除 DataRepeater 控制項時, DataRepeaterItemDeletingItemsUserDeletingItems 事件發生。

您可以藉由將 DataRepeaterAddRemoveItemsCancelEventArgs 的 cancel 參數覆寫已刪除到 True。

範例

下列範例示範如何移除 DeletingItems 事件處理常式中的刪除。

Private Sub DataRepeater1_DeletingItems(
    ByVal sender As Object, 
    ByVal e As Microsoft.VisualBasic.PowerPacks.DataRepeaterAddRemoveItemsCancelEventArgs
  ) Handles DataRepeater1.DeletingItems

    ' Check whether the user is a supervisor. 
    If My.User.IsInRole("Supervisor") = False Then 
        ' Cancel the deletion and display a message.
        e.Cancel = True
        MsgBox("You are not authorized to delete.")
    End If 
End Sub
private void DataRepeater1_DeletingItems(object sender, 
    Microsoft.VisualBasic.PowerPacks.DataRepeaterAddRemoveItemsCancelEventArgs e)
{
    // Check whether the user is a supervisor.

    ClientRolePrincipal rolePrincipal =
        System.Threading.Thread.CurrentPrincipal
        as ClientRolePrincipal;

    if (rolePrincipal.IsInRole("supervisor") == false)
    {
        e.Cancel = true;
        MessageBox.Show("You are not authorized to delete.");
    }
}   

執行緒安全

這個類型的任何 Public static (在 Visual Basic 中為 Shared) 成員都是安全執行緒。不保證任何執行個體成員是安全執行緒。

請參閱

參考

Microsoft.VisualBasic.PowerPacks 命名空間

DeletingItems

UserDeletingItems

其他資源

DataRepeater 控制項簡介 (Visual Studio)

如何:停用加入和刪除 DataRepeater 項目 (Visual Studio)