我的自定义容器有问题。当我实例化单个控件时,实例化控件的计数变为 3!!!
解释起来有点困难,所以让我在我的代码中描述它,这是我的孩子控制类代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace WebApplication2
{
public class Child:System.Web.UI.Control
{
}
}
这是 MyContainer 类代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
namespace WebApplication2
{
public class MyContaner:System.Web.UI.WebControls.WebControl,INamingContainer
{
[PersistenceMode(PersistenceMode.InnerProperty)]
public ITemplate ChildControls { get; set; }
protected override void CreateChildControls()
{
var cl = new Child();
ChildControls.InstantiateIn(cl);
var x=cl.Controls.Count;
this.Controls.Add(cl);
}
}
}
这是我的 aspx 页面:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication2.WebForm1" %>
<%@ Register Assembly="WebApplication2" Namespace="WebApplication2" TagPrefix="t" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<t:MyContainer runat="server">
<ChildControls>
<asp:TextBox runat="server"></asp:TextBox>
</ChildControls>
</t:MyContainer>
</div>
</form>
</body>
</html>
所以当我运行这条线时:ChildControls.InstantiateIn(cl);
我cl.Controls.Count
变成 3。虽然这就是我所拥有的,但我希望它返回 1。
我错过了什么吗?如果我想获得确切的子控件该怎么办?
谢谢你们。