- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我将发布更多代码来准确展示我正在尝试做的事情,我使用编程代码而不是标记添加按钮,但 OnClick 不起作用(出现以下错误:
System.Web.UI.WebControls.Button.OnClick(System.EventArgs)' is inaccessible due to its protection level.
Button btnopslaan = new Button();
btnopslaan.Text = "Opslaan";
btnopslaan.ID = "btnOpslaan";
btnopslaan.CssClass = ".opslaan";
btnopslaan.Click += new EventHandler(btnopslaanClick);
btnopslaan_arr[btn_count] = btnopslaan;
add_button(btnopslaan);
protected void btnopslaanClick(object sender, EventArgs e)
{
Debug.WriteLine("success");
}
我就是找不到为什么这不起作用。
谁能帮帮我?
最佳答案
对于服务器端点击,您需要使用 OnClick
而不是 OnClientClick
要么你可以内联使用它>
<asp:Button id="btnopslaan" runat="server' OnClick="btnopslaanClick" />
或者在代码后面>
btnopslaan.Click+=new EventHandler(btnopslaanClick);
关于c# - Button.OnClientClick 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5848467/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!