zoukankan      html  css  js  c++  java
  • DataGrid中使用CheckBox的CheckedChanged事件

    使用DataGrid的过程中常会用到CheckBox控件,并使用它的CheckedChanged事件。使用如下:

    1、CheckBox控件需要设置AutoPostBack="true"
    <asp:CheckBox id="chbIsActive" runat="server" AutoPostBack="true"></asp:CheckBox>

    2、CheckBox控件的事件须在DataGrid的ItemCreated定义才能生效
            private void grdStructure_ItemCreated(object sender, System.Web.UI.WebControls.DataGridItemEventArgs e)
            
    {
                
    if(e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
                
    {
                    
                    CheckBox chbIsActive 
    = e.Item.FindControl("chbIsActive"as CheckBox;
                    chbIsActive.CheckedChanged 
    += new EventHandler(chbIsActive_CheckedChanged);
                }

            }

    3、编写事件代码
            private void chbIsActive_CheckedChanged(object sender, EventArgs e)
            
    {
                CheckBox chbIsActive 
    = (CheckBox)sender;

                Guid structureUID 
    = new Guid(chbIsActive.Attributes["StructureUID"]);
                
    bool isActive = chbIsActive.Checked;

                IPMStructureManager manager 
    = PMStructureManagerFactory.GetInstance();
                manager.SetActive(structureUID, isActive);

                
    this.Binding();
            }

  • 相关阅读:
    pe文件结构
    dll
    术语
    创建内存映射文件
    函数的调用约定
    串口
    linux 之 tcpdump
    linux 之程序管理
    perl 之eval
    2020-10-27_组合快捷键
  • 原文地址:https://www.cnblogs.com/chenjunbiao/p/1760271.html
Copyright © 2011-2022 走看看