本文整理匯總了VB.NET中System.Web.UI.WebControls.Repeater.OnBubbleEvent方法的典型用法代碼示例。如果您正苦於以下問題:VB.NET Repeater.OnBubbleEvent方法的具體用法?VB.NET Repeater.OnBubbleEvent怎麽用?VB.NET Repeater.OnBubbleEvent使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。
在下文中一共展示了Repeater.OnBubbleEvent方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的VB.NET代碼示例。
示例1: OnBubbleEvent
' 導入命名空間
Imports System.Web
Imports System.Security.Permissions
Namespace Samples.AspNet.VB.Controls
<AspNetHostingPermission(SecurityAction.Demand, Level:=AspNetHostingPermissionLevel.Minimal)> _
Public NotInheritable Class CustomRepeaterOnBubbleEvent
Inherits System.Web.UI.WebControls.Repeater
Protected Overrides Function OnBubbleEvent(ByVal [source] As Object, ByVal args As System.EventArgs) As Boolean
' If the EventArgs are of type RepeaterCommadnEventArgs,
' then call the OnItemCommand event handler and return true (bubble up the event)
' else return false (don't bubble up the event).
Dim isHandled As Boolean = False
If TypeOf args Is System.Web.UI.WebControls.RepeaterCommandEventArgs Then
Me.OnItemCommand(CType(args, System.Web.UI.WebControls.RepeaterCommandEventArgs))
isHandled = True
End If
Return isHandled
End Function
End Class
End Namespace