从动态生成的Panel Controls中获取值

时间:2013-04-02 11:24:08

标签: c#

我根据表格中的记录数量动态地在flowlayoutpanel中添加面板控件。我想从每个面板获取id,以便我可以在面板的click事件上打开一个弹出窗口。任何sugestions?

这是我的代码示例。

        int id=0;
        public void FillSearch()
        {
            var playerList = dianaDB.TblPlayers.Where(p => p.Status == "Active" & p.CancellationStatus == "Active" & p.Version == "Active").Select(p => p);
            Panel pnlPlayer = new Panel();
            foreach (var pl in playerList)
            {
                pnlPlayer = new Panel();
                pnlPlayer.Size = new Size(153, 116);
                pnlPlayer.BorderStyle = BorderStyle.FixedSingle;
                pnlPlayer.Cursor = Cursors.Hand;
                pnlPlayer.Click += new EventHandler(pbx_Click);
                id=pl.Id;
            }
        }


        private void pbx_Click(object sender, EventArgs e)
        { 
            DlgSearchDetails newDlg = new DlgSearchDetails(id);
            newDlg.ShowDialog();
        }

2 个答案:

答案 0 :(得分:1)

假设您正在询问WinForm 每个控件都有一个tag属性,你可以利用它。

 public void FillSearch()
    {
        var playerList = dianaDB.TblPlayers.Where(p => p.Status == "Active" & p.CancellationStatus == "Active" & p.Version == "Active").Select(p => p);
        Panel pnlPlayer = new Panel();
        foreach (var pl in playerList)
        {
            pnlPlayer = new Panel();
            pnlPlayer.Size = new Size(153, 116);
            pnlPlayer.BorderStyle = BorderStyle.FixedSingle;
            pnlPlayer.Cursor = Cursors.Hand;
            pnlPlayer.Click += new EventHandler(pbx_Click);
            pnlPlayer.Tag = pl.Id;
        }
    }


    private void pbx_Click(object sender, EventArgs e)
    { 
         var panle = sender as Panel;
         if(panel!=null)
         {
           DlgSearchDetails newDlg = new DlgSearchDetails(panel.Tag);
           newDlg.ShowDialog();
         }

    }

答案 1 :(得分:1)

您可以将ID面板存储在其Tag属性中。

pnlPlayer.Tag = id;

然后稍后检索

private void pbx_Click(object sender, EventArgs e)
{ 

    Panel p = sender as Panel;
    if(p != null)
    { 
       //TODO add error handling to ensure Tag contains an int
       //...
       DlgSearchDetails newDlg = new DlgSearchDetails((int)p.Tag);
       newDlg.ShowDialog();
    }
}