自定义控件SelectedIndexChanged未触发

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义控件SelectedIndexChanged未触发相关的知识,希望对你有一定的参考价值。

我的自定义控件基于Telerik控件

Public Class ComboBoxСountries
    Inherits RadComboBox
End Class

使用控制

<mc:ComboBoxСountries ID="ComboCountry" runat="server" Width="100%" AutoPostBack="true"></mc:ComboBoxСountries>

事件

Protected Sub ComboCountry_SelectedIndexChanged(sender As Object, e As RadComboBoxSelectedIndexChangedEventArgs) Handles ComboCountry.SelectedIndexChanged
    ' not fired
End Sub

组合国家SelectedIndexChanged没有被解雇,但如果使用<telerik:RadComboBox />一切都好。如何解决这个问题呢?

答案

添加SelectedIndexChanged =“Combo Country SelectedIndexChanged”帮助

<mc:ComboBoxСountries ID="ComboCountry" runat="server" Width="100%" AutoPostBack="true" OnSelectedIndexChanged="ComboCountry_SelectedIndexChanged"></mc:ComboBoxСountries>

以上是关于自定义控件SelectedIndexChanged未触发的主要内容,如果未能解决你的问题,请参考以下文章

C#下拉菜单最后一项自定义的实现

comboboxedit控件 SelectedIndexChanged事件

ASP.NET中服务器控件RadioButtonList 值改变为啥不触发SelectedIndexChanged

c#中,如何对COMBOBOX的SelectedIndexChanged事件分别执行程序?

ComboBox SelectedIndexChanged 事件:如何获取之前选择的索引?

DropDownList控件