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();
            }

  • 相关阅读:
    2018.11.7 PION 模拟赛
    洛谷 P1074 靶形数独
    洛谷 P2831 愤怒的小鸟
    2018.11.6 PION 模拟赛
    洛谷 P1034 矩形覆盖
    博客使用指南
    TERADATA SQL学习随笔<一>
    补发:用Meal Prep+模块化饮食来减肥之实操
    [从产品角度学excel 04]-单元格的“衣服”
    [从产品角度学EXCEL 03]-单元格的秘密
  • 原文地址:https://www.cnblogs.com/chenjunbiao/p/1760271.html
Copyright © 2011-2022 走看看