簡體   English   中英

VB + DevExpress按鈕未觸發點擊事件

[英]VB + DevExpress Button is not firing click event

我的按鈕沒有觸發點擊事件

<dx:ASPxButton ID="btnLancar" runat="server" Text="Lançar" AutoPostBack="true" />
 Protected Sub btnLancar_Click(ByVal sender As Object, ByVal e As System.EventArgs) 
                                                            Handles btnLancar.Click    

 End Sub

ASPxButton元素需要設置OnClick屬性。

<dx:ASPxButton ID="btnLancar" runat="server" Text="Lançar" AutoPostBack="true" OnClick="btnLancar_Click" />

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM